public enum ErrorCode extends Enum<ErrorCode>
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getDescription() |
String |
toString() |
static ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode ENTITY_NOT_FOUND
public static final ErrorCode WEBHOOK_ENCRYPTION_GENERAL_ERROR
public static final ErrorCode WEBHOOK_ENCRYPTION_SIGNATURE_HEADER_INVALID
public static final ErrorCode WEBHOOK_ENCRYPTION_PUBLIC_KEY_INVALID
public static final ErrorCode WEBHOOK_ENCRYPTION_PUBLIC_KEY_UNKNOWN
public static final ErrorCode WEBHOOK_ENCRYPTION_UNKNOWN_PROVIDER
public static final ErrorCode WEBHOOK_ENCRYPTION_UNKNOWN_ALGORITHM
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode 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 nullpublic String getDescription()
public int getCode()
Copyright © 2024. All rights reserved.