aboutsummaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/exceptions/inventory/ServiceNotFoundException.java
blob: de4a5496048939e500a1234c7683bbc741c832a4 (plain)
1
2
3
4
5
6
7
8
9
package org.onap.ccsdk.dashboard.exceptions.inventory;

public class ServiceNotFoundException extends Exception {

	private static final long serialVersionUID = -8183806298586822720L;

	public ServiceNotFoundException() {	super(); }
	public ServiceNotFoundException (String message) { super(message); }
}