summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/CatalogException.java
blob: d8e2dba39f7e9ba47ea7e40cef9e88ed5bf98851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.sdc.dcae.checker;


public class CatalogException extends Exception {

  public CatalogException(String theMsg, Throwable theCause) {
    super(theMsg, theCause);
  }

  public CatalogException(String theMsg) {
    super(theMsg);
  }

}