public class ColumnDoesNotExistException extends BaseException
Constructor and Description |
---|
ColumnDoesNotExistException()
The default constructor.
|
ColumnDoesNotExistException(java.lang.String message)
Constructs an instance of a
ColumnDoesNotExistException class using the specified message. |
ColumnDoesNotExistException(java.lang.String message,
java.lang.Throwable cause)
Constructs an instance of a
ColumnDoesNotExistException class using the specified message and cause. |
ColumnDoesNotExistException(java.lang.Throwable cause)
Constructs an instance of a
ColumnDoesNotExistException class using the specified cause. |
Modifier and Type | Method and Description |
---|---|
int |
ordinal()
Returns the ID of the exception to facilitate unmarshaling XML representation
back into Java object.
|
getXml
public ColumnDoesNotExistException()
public ColumnDoesNotExistException(java.lang.String message)
ColumnDoesNotExistException
class using the specified message.message
- The message string containing more information about the exception.public ColumnDoesNotExistException(java.lang.Throwable cause)
ColumnDoesNotExistException
class using the specified cause.cause
- The Exception class containing a snapshot of the execution stack of its thread at the
time it was created.public ColumnDoesNotExistException(java.lang.String message, java.lang.Throwable cause)
ColumnDoesNotExistException
class using the specified message and cause.message
- The message string containing more information about the exception.cause
- The Exception class containing a snapshot of the execution stack of its thread at the
time it was created.public int ordinal()
ordinal
in class BaseException
int
.