summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/CheckerException.java
blob: 1963c28950b6f890938a1f33801a4c076b5de7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.sdc.dcae.checker;


/**
 * A checker exception represents an error that stops the checker from
 * completing its task.
 */
public class CheckerException extends Exception {

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

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

}