DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_validator / checker / src / main / java / org / onap / sdc / dcae / checker / CheckerException.java
1 package org.onap.sdc.dcae.checker;
2
3
4 /**
5  * A checker exception represents an error that stops the checker from
6  * completing its task.
7  */
8 public class CheckerException extends Exception {
9
10   public CheckerException(String theMsg, Throwable theCause) {
11     super(theMsg, theCause);
12   }
13
14   public CheckerException(String theMsg) {
15     super(theMsg);
16   }
17
18 }