Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-encapsulation / android / service / src / main / java / org / iotivity / service / RcsPlatformException.java
1 package org.iotivity.service;
2
3 /**
4  * Thrown when an operation that has base-layer dependency is failed.
5  *
6  */
7 public class RcsPlatformException extends RcsException {
8
9     private static final long serialVersionUID = -6093438347973754721L;
10
11     private final int mReasonCode;
12
13     public RcsPlatformException(String message, int reasonCode) {
14         super(message);
15
16         mReasonCode = reasonCode;
17     }
18
19     public int getReasonCode() {
20         return mReasonCode;
21     }
22 }