Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / service / resource-encapsulation / android / service / src / main / java / org / iotivity / service / server / RcsUnlockedException.java
1 package org.iotivity.service.server;
2
3 import org.iotivity.service.RcsException;
4
5 /**
6  * Thrown when trying to access a unlocked {@link RcsLockedAttributes}.
7  *
8  */
9 public class RcsUnlockedException extends RcsException {
10
11     private static final long serialVersionUID = 4292243643497860992L;
12
13     public RcsUnlockedException(String message) {
14         super(message);
15     }
16
17 }