18b66312d8f47f77798dbba6f622d533ab042a79
[ccsdk/features.git] /
1 package org.onap.ccsdk.features.sdnr.northbound.ranSlice;
2
3 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
4 import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200806.common.header.CommonHeader;
5 import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200806.status.Status;
6
7 public class RANSliceRpcInvocationException extends SvcLogicException {
8
9         private Status status;
10         private CommonHeader commonHeader;
11
12         public RANSliceRpcInvocationException(Status status, CommonHeader commonHeader) {
13                 this.status = status;
14                 this.commonHeader = commonHeader;
15         }
16
17         public Status getStatus() {
18                 return status;
19         }
20
21         public CommonHeader getCommonHeader() {
22                 return commonHeader;
23         }
24
25 }