public static enum SNSFacadeException.ReasonCode extends Enum<SNSFacadeException.ReasonCode>
| Enum Constant and Description |
|---|
INVALID_CONFIGURATION
An invalid configuration value (these shouldn't happen if you validate
your configuration!).
|
MISSING_TOPIC
The requested SNS topic does not exist.
|
THROTTLING
The API call was throttled; caller should retry.
|
UNEXPECTED_EXCEPTION
An exception that isn't expected to be corrected by the caller (just
throw it on up).
|
| Modifier and Type | Method and Description |
|---|---|
static SNSFacadeException.ReasonCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SNSFacadeException.ReasonCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SNSFacadeException.ReasonCode UNEXPECTED_EXCEPTION
public static final SNSFacadeException.ReasonCode INVALID_CONFIGURATION
public static final SNSFacadeException.ReasonCode MISSING_TOPIC
public static final SNSFacadeException.ReasonCode THROTTLING
public static SNSFacadeException.ReasonCode[] values()
for (SNSFacadeException.ReasonCode c : SNSFacadeException.ReasonCode.values()) System.out.println(c);
public static SNSFacadeException.ReasonCode 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 © 2023. All rights reserved.