// $Id: DatatypeConfigurationException.java,v 1.1 2004/03/06 00:22:23 jsuttor Exp $ /* * @(#)DatatypeConfigurationException.java 1.2 04/07/26 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.xml.datatype; /** *

Indicates a serious configuration error.

* * TODO: support all constructors * * @author Jeff Suttor * @version $Revision: 1.1 $, $Date: 2004/03/06 00:22:23 $ * @since 1.5 */ public class DatatypeConfigurationException extends Exception { /** *

Create a new DatatypeConfigurationException with * no specified detail mesage and cause.

*/ public DatatypeConfigurationException() { super(); } /** *

Create a new DatatypeConfigurationException with * the specified detail message.

* * @param message The detail message. */ public DatatypeConfigurationException(String message) { super(message); } /** *

Create a new DatatypeConfigurationException with * the specified detail message and cause.

* * @param message The detail message. * @param cause The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown. */ public DatatypeConfigurationException(String message, Throwable cause) { super(message, cause); } /** *

Create a new DatatypeConfigurationException with * the specified cause.

* * @param cause The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown. */ public DatatypeConfigurationException(Throwable cause) { super(cause); } }