1 2 3 package org.enhydra.shark.api.internal.eventaudit; 4 5 6 7 import org.enhydra.shark.api.RootException; 8 9 10 11 22 23 public class EventAuditException extends RootException { 24 25 26 27 36 37 public EventAuditException(String message) { 38 39 super(message); 40 41 } 42 43 44 45 58 59 public EventAuditException(Throwable cause) { 60 61 super(cause); 62 63 } 64 65 66 67 80 81 public EventAuditException(String message, Throwable cause) { 82 83 super(message, cause); 84 85 } 86 87 } 88 89 | Popular Tags |