/* * 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.
Create a new DatatypeConfigurationException
with
* the specified detail message.
Create a new DatatypeConfigurationException
with
* the specified detail message and cause.
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.
null
value is permitted, and indicates that the cause is nonexistent or unknown.
*/
public DatatypeConfigurationException(Throwable cause) {
super(cause);
}
}