Merge branch 'master' into resource-container
[platform/upstream/iotivity.git] / service / resource-container / android / resource-container / src / main / java / org / iotivity / service / resourcecontainer / RcsDestroyedObjectException.java
1 package org.iotivity.service.resourcecontainer;
2
3 /**
4  * Thrown when trying to access a destroyed resource object.
5  *
6  */
7 public class RcsDestroyedObjectException extends RcsException {
8
9     private static final long serialVersionUID = -4107062696447237658L;
10
11     public RcsDestroyedObjectException(String message) {
12         super(message);
13     }
14
15 }