1 package org.manentia.kasai.exceptions; 2 3 import com.koala.commons.CriticalException; 4 5 9 public class CannotAuditException extends CriticalException { 10 11 public CannotAuditException() { 12 super(); 13 } 14 15 public CannotAuditException(String msg) { 16 super(msg); 17 } 18 19 public CannotAuditException(String msg, Throwable cause) { 20 super(msg, cause); 21 } 22 23 public CannotAuditException(Throwable cause) { 24 super(cause); 25 } 26 } 27 | Popular Tags |