summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/exceptions/SdcResourceNotFoundException.java
blob: 227ce20a1afb932736a4578e5e0269c069304504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.openecomp.sdc.be.components.impl.exceptions;

public class SdcResourceNotFoundException extends RuntimeException {

	private static final long serialVersionUID = 4431147390120646573L;

	public SdcResourceNotFoundException(){}

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