View Javadoc
1   package ch.qos.logback.classic.issue.logback1159;
2   
3   /**
4    * Based error class to be thrown in a logging failsafe situation. I.e. any
5    * unexpected error situations during logging (e.g. database access, I/O
6    * failure)
7    * 
8    */
9   public class LoggingError extends Error {
10  
11      private static final long serialVersionUID = -4881940499551760472L;
12  
13      public LoggingError(String msg, Throwable cause) {
14          super(msg, cause);
15      }
16  
17  }