public enum RadiusProcessingExceptionNature extends Enum<RadiusProcessingExceptionNature>
Enum Constant and Description |
---|
CATASTROPHIC
Indicates that the exception is unrecoverable and no further responses will be sent.
|
INVALID_RESPONSE
Indicates that this response is invalid and is unable to be sent.
|
TEMPORARY_FAILURE
Indicates that the exception is temporary and the response should be re-tried.
|
Modifier and Type | Method and Description |
---|---|
static RadiusProcessingExceptionNature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RadiusProcessingExceptionNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RadiusProcessingExceptionNature CATASTROPHIC
public static final RadiusProcessingExceptionNature INVALID_RESPONSE
public static final RadiusProcessingExceptionNature TEMPORARY_FAILURE
public static RadiusProcessingExceptionNature[] values()
for (RadiusProcessingExceptionNature c : RadiusProcessingExceptionNature.values()) System.out.println(c);
public static RadiusProcessingExceptionNature 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 © 2010–2025 Open Identity Platform Community. All rights reserved.