public final class ErrorType
extends java.lang.Object
APException.getErrorType()
Modifier and Type | Field and Description |
---|---|
static ErrorType |
APPLICATION_EX
This is an application exception from the server.
|
static ErrorType |
BAD_CREDENTIALS
This error type is thrown when insufficient user credentials was supplied.
|
static ErrorType |
COMM_EX
Error type for communication errors between client server component.
|
static ErrorType |
CORBA_EX
Deprecated.
Not applicable with the IFS Client Gateway, replaced by
COMM_EX .
Exceptions of this type origins from the middleware classes.
'Bind not succeeded' and 'Bad operation' are examples of this kind of
excpetions. The original Java exception is available via the
APException 's getRootCause() method. |
static ErrorType |
DATABASE_EX
This is a database exception from the server.
|
static ErrorType |
EXCEPTION_EX
Some other form of exception from the server.
|
static ErrorType |
FND_EX
An exception that denotes buffer parsing errors.
|
static ErrorType |
IO_EX
If an
IOException occurs somewhere along the path when
invoking a server operation, it's re-throw inside an APException with
this error type. |
static ErrorType |
MANUAL_DECISION
Not really an error, but indicates that the server have requested a manual
decision from the user.
|
static ErrorType |
SECURITY_EX
A security exception from the server, such as the user wasn't allowed to
execute the desired operation.
|
static ErrorType |
UNKNOWN_EX
This error type desibes all unknown (or uncategorized) errors.
|
static ErrorType |
VALIDATION_EX
This is a special type of application exceptions.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
public static final ErrorType APPLICATION_EX
public static final ErrorType VALIDATION_EX
ValidationException
is thrown.public static final ErrorType DATABASE_EX
public static final ErrorType SECURITY_EX
public static final ErrorType EXCEPTION_EX
public static final ErrorType FND_EX
APException
's
getRootCause()
method.public static final ErrorType IO_EX
IOException
occurs somewhere along the path when
invoking a server operation, it's re-throw inside an APException with
this error type. The original Java exception is available via the
APException
's getRootCause()
method.public static final ErrorType COMM_EX
APExcpetion
's getRootCause()
method. (When the
error occurred between the client and the client gateway).public static final ErrorType CORBA_EX
COMM_EX
.
Exceptions of this type origins from the middleware classes.
'Bind not succeeded' and 'Bad operation' are examples of this kind of
excpetions. The original Java exception is available via the
APException
's getRootCause()
method.public static final ErrorType MANUAL_DECISION
ManualDecisionException
is thrown.public static final ErrorType UNKNOWN_EX
APException
's getRootCause()
method.public static final ErrorType BAD_CREDENTIALS