1 package ch.qos.logback.core.boolex; 2 3 /** 4 * This exception wraps exceptions thrown while evaluating events. 5 * 6 * @author Ceki Gülcü 7 */ 8 public class EvaluationException extends Exception { 9 10 private static final long serialVersionUID = 1L; 11 12 public EvaluationException(String msg) { 13 super(msg); 14 } 15 16 public EvaluationException(String msg, Throwable cause) { 17 super(msg, cause); 18 } 19 20 public EvaluationException(Throwable cause) { 21 super(cause); 22 } 23 24 }