View Javadoc

1   package ch.qos.logback.core.joran.spi;
2   
3   public class JoranException extends Exception {
4   
5     private static final long serialVersionUID = 1112493363728774021L;
6   
7     public JoranException(String msg) {
8       super(msg);
9     }
10    
11    public JoranException(String msg, Throwable cause) {
12      super(msg, cause);
13    }
14  }