1 25 26 package javax.ejb; 27 28 35 public class ConcurrentAccessException extends EJBException { 36 37 40 private static final long serialVersionUID = -8980855319866981477L; 41 42 45 public ConcurrentAccessException() { 46 super(); 47 } 48 49 53 public ConcurrentAccessException(final String message) { 54 super(message); 55 } 56 57 62 public ConcurrentAccessException(final String message, final Exception causedByException) { 63 super(message, causedByException); 64 } 65 66 } 67 | Popular Tags |