KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > manentia > kasai > exceptions > CannotAuditException


1 package org.manentia.kasai.exceptions;
2
3 import com.koala.commons.CriticalException;
4
5 /**
6  *
7  * @author rzuasti
8  */

9 public class CannotAuditException extends CriticalException {
10      
11     public CannotAuditException() {
12         super();
13     }
14         
15     public CannotAuditException(String JavaDoc msg) {
16         super(msg);
17     }
18     
19     public CannotAuditException(String JavaDoc msg, Throwable JavaDoc cause) {
20         super(msg, cause);
21     }
22     
23     public CannotAuditException(Throwable JavaDoc cause) {
24         super(cause);
25     }
26 }
27
Popular Tags