1 25 26 package org.objectweb.easybeans.persistence.xml; 27 28 29 33 public class PersistenceXmlFileAnalyzerException extends Exception { 34 35 38 private static final long serialVersionUID = -5161894014517239413L; 39 40 45 public PersistenceXmlFileAnalyzerException() { 46 super(); 47 } 48 49 56 public PersistenceXmlFileAnalyzerException(final String message) { 57 super(message); 58 } 59 60 74 public PersistenceXmlFileAnalyzerException(final String message, final Throwable cause) { 75 super(message, cause); 76 } 77 78 } 79 | Popular Tags |