1 package org.ocltf.common; 2 3 /*** 4 * Any unchecked exception that will be thrown during execution 5 * of the XmlObjectFactory. 6 */ 7 public class XmlObjectFactoryException extends RuntimeException { 8 9 /*** 10 * Constructs an instance of XmlObjectFactoryException. 11 * 12 * @param th 13 */ 14 public XmlObjectFactoryException(Throwable th){ 15 super(th); 16 } 17 18 /*** 19 * Constructs an instance of XmlObjectFactoryException. 20 * 21 * @param msg 22 */ 23 public XmlObjectFactoryException(String msg) { 24 super(msg); 25 } 26 27 /*** 28 * Constructs an instance of XmlObjectFactoryException. 29 * 30 * @param msg 31 * @param th 32 */ 33 public XmlObjectFactoryException(String msg, Throwable th) { 34 super(msg, th); 35 } 36 37 }