001package eu.cqse.check.framework.core; 002 003/** 004 * An exception that is thrown within the custom check framework. 005 */ 006public class CheckException extends Exception { 007 008 /** The serial version UID. */ 009 private static final long serialVersionUID = 1L; 010 011 /** Creates a new CheckException with the given message and cause. */ 012 public CheckException(String message, Exception cause) { 013 super(message, cause); 014 } 015 016 /** Creates a new CheckException with the given cause. */ 017 public CheckException(Exception cause) { 018 super(cause); 019 } 020 021 /** Creates a new CheckException with the given message. */ 022 public CheckException(String message) { 023 super(message); 024 } 025}