Created by IntelliJ IDEA.
User: John Ellis
Date: Apr 15, 2004
Time: 12:24:25 PM
To change this template use File | Settings | File Templates.
Constructor Summary
public
SchemaInvalidException() Constructs a new runtime exception with null as its
detail message.
public
SchemaInvalidException(String message) Constructs a new runtime exception with the specified detail message.
The cause is not initialized, and may subsequently be initialized by a
call to
SchemaInvalidException.initCause .
Parameters: message - the detail message.
SchemaInvalidException(Throwable cause) Constructs a new runtime exception with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
Constructs a new runtime exception with null as its
detail message. The cause is not initialized, and may subsequently be
initialized by a call to
SchemaInvalidException.initCause .
SchemaInvalidException
public SchemaInvalidException(String message)(Code)
Constructs a new runtime exception with the specified detail message.
The cause is not initialized, and may subsequently be initialized by a
call to
SchemaInvalidException.initCause .
Parameters: message - the detail message. The detail message is saved forlater retrieval by the SchemaInvalidException.getMessage() method.
Constructs a new runtime exception with the specified detail message and
cause.
Note that the detail message associated with
cause is not automatically incorporated in
this runtime exception's detail message.
Parameters: message - the detail message (which is saved for later retrievalby the SchemaInvalidException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by theSchemaInvalidException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent orunknown.) since: 1.4
Constructs a new runtime exception with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause). This constructor is useful for runtime exceptions
that are little more than wrappers for other throwables.
Parameters: cause - the cause (which is saved for later retrieval by theSchemaInvalidException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent orunknown.) since: 1.4