aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/northbound/ranSlice/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/ranSlice/RANSliceRpcInvocationException.java
blob: 18b66312d8f47f77798dbba6f622d533ab042a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.onap.ccsdk.features.sdnr.northbound.ranSlice;

import org.onap.ccsdk.sli.core.sli.SvcLogicException;
import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200806.common.header.CommonHeader;
import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200806.status.Status;

public class RANSliceRpcInvocationException extends SvcLogicException {

	private Status status;
	private CommonHeader commonHeader;

	public RANSliceRpcInvocationException(Status status, CommonHeader commonHeader) {
		this.status = status;
		this.commonHeader = commonHeader;
	}

	public Status getStatus() {
		return status;
	}

	public CommonHeader getCommonHeader() {
		return commonHeader;
	}

}