1 23 24 31 package com.sun.enterprise.admin.event; 32 33 37 public class AdminEventListenerException extends java.lang.Exception { 38 39 43 public AdminEventListenerException() { 44 } 45 46 51 public AdminEventListenerException(String msg) { 52 super(msg); 53 } 54 55 61 public AdminEventListenerException(String msg, Throwable cause) { 62 super(msg, cause); 63 } 64 65 71 public AdminEventListenerException(Throwable cause) { 72 super(cause); 73 } 74 } 75 | Popular Tags |