DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_validator / checker / src / main / java / org / onap / sdc / dcae / checker / CatalogException.java
1 package org.onap.sdc.dcae.checker;
2
3
4 public class CatalogException extends Exception {
5
6   public CatalogException(String theMsg, Throwable theCause) {
7     super(theMsg, theCause);
8   }
9
10   public CatalogException(String theMsg) {
11     super(theMsg);
12   }
13
14 }