1 25 26 package javax.ejb; 27 28 39 public class NoSuchEntityException extends EJBException { 40 41 44 private static final long serialVersionUID = -4861625171310593950L; 45 46 49 public NoSuchEntityException() { 50 super(); 51 } 52 53 57 public NoSuchEntityException(final String message) { 58 super(message); 59 } 60 61 65 public NoSuchEntityException(final Exception causedByException) { 66 super(causedByException); 67 } 68 } 69 | Popular Tags |