View Javadoc

1   package org.kite9.framework.logging;
2   
3   @SuppressWarnings("serial")
4   public class LogicException extends RuntimeException {
5   
6       public LogicException() {
7   	super();
8       }
9   
10      public LogicException(String arg0, Throwable arg1) {
11  	super(arg0, arg1);
12      }
13      
14      public LogicException(String arg0) {
15  	super(arg0);
16      }
17  
18      public LogicException(Throwable arg0) {
19  	super(arg0);
20      }
21  
22  }