01: package javax.persistence; 02: 03: public class EntityNotFoundException extends RuntimeException { 04: 05: public EntityNotFoundException() { 06: super (); 07: } 08: 09: public EntityNotFoundException(String message) { 10: super(message); 11: } 12: };