public enum ExceptionType extends java.lang.Enum<ExceptionType>
Enum Constant and Description |
---|
Api
A generic API exception.
|
ColumnDoesNotExists
The specified column does not exist.
|
Generic
The exception of last resort.
|
JobDoesNotExist
The specified job does not exist.
|
NoMoreRows
The data set contains no more rows.
|
NoRows
The data set contains no rows.
|
NotAuthenticated
The user name or password could not be authenticated.
|
ServerCreation
An instance of the server could not be created.
|
ServerNotResponding
The server is not responding.
|
SessionDoesNotExist
The specified session does not exist.
|
Storage
The request to WebDAV storage failed..
|
UnableToAllocateSession
The specified session does not exist.
|
WrongNumber
A wrong number was provided.
|
Modifier and Type | Method and Description |
---|---|
static ExceptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionType JobDoesNotExist
public static final ExceptionType NotAuthenticated
public static final ExceptionType ServerNotResponding
public static final ExceptionType Storage
public static final ExceptionType Generic
public static final ExceptionType Api
public static final ExceptionType ServerCreation
public static final ExceptionType ColumnDoesNotExists
public static final ExceptionType NoMoreRows
public static final ExceptionType NoRows
public static final ExceptionType WrongNumber
public static final ExceptionType SessionDoesNotExist
public static final ExceptionType UnableToAllocateSession
public static ExceptionType[] values()
for (ExceptionType c : ExceptionType.values()) System.out.println(c);
public static ExceptionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null