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