1 25 26 package javax.ejb; 27 28 34 public class NoSuchEJBException extends EJBException { 35 36 39 private static final long serialVersionUID = -4861625171310593950L; 40 41 44 public NoSuchEJBException() { 45 super(); 46 } 47 48 52 public NoSuchEJBException(final String message) { 53 super(message); 54 } 55 56 61 public NoSuchEJBException(final String message, final Exception causedByException) { 62 super(message, causedByException); 63 } 64 } 65 | Popular Tags |