public static enum RequestEvent.ExceptionCause extends Enum<RequestEvent.ExceptionCause>
Enum Constant and Description |
---|
MAPPED_RESPONSE
An exception was thrown during the processing of response
mapped from
exception mappers . |
ORIGINAL
An exception was thrown during the standard request and response processing and was not thrown
from processing of mapped response.
|
Modifier and Type | Method and Description |
---|---|
static RequestEvent.ExceptionCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestEvent.ExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestEvent.ExceptionCause ORIGINAL
public static final RequestEvent.ExceptionCause MAPPED_RESPONSE
exception mappers
.public static RequestEvent.ExceptionCause[] values()
for (RequestEvent.ExceptionCause c : RequestEvent.ExceptionCause.values()) System.out.println(c);
public static RequestEvent.ExceptionCause valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.