/* * Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.xml.datatype; /** *

Indicates a serious configuration error.

* * @author Jeff Suttor * @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); } }