public enum JaversExceptionCode extends java.lang.Enum<JaversExceptionCode>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMessage()
Error description and possibly solution hints.
|
static JaversExceptionCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JaversExceptionCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JaversExceptionCode CLASS_EXTRACTION_ERROR
public static final JaversExceptionCode ENTITY_WITHOUT_ID
public static final JaversExceptionCode ENTITY_INSTANCE_WITH_NULL_ID
public static final JaversExceptionCode NOT_INSTANCE_OF
public static final JaversExceptionCode UNDEFINED_PROPERTY
public static final JaversExceptionCode MALFORMED_PROPERTY
public static final JaversExceptionCode CLASSPATH_RESOURCE_NOT_FOUND
public static final JaversExceptionCode ALREADY_BUILT
public static final JaversExceptionCode CONTAINER_NOT_READY
public static final JaversExceptionCode AFFECTED_CDO_IS_NOT_AVAILABLE
public static final JaversExceptionCode MISSING_PROPERTY
public static final JaversExceptionCode NOT_IMPLEMENTED
public static final JaversExceptionCode SNAPSHOT_NOT_FOUND
public static final JaversExceptionCode SET_OF_VO_DIFF_NOT_IMPLEMENTED
public static final JaversExceptionCode GENERIC_TYPE_NOT_PARAMETRIZED
public static final JaversExceptionCode VALUE_OBJECT_IS_NOT_SUPPORTED_AS_MAP_KEY
public static final JaversExceptionCode SNAPSHOT_STATE_VIOLATION
public static final JaversExceptionCode PROPERTY_NOT_FOUND
public static final JaversExceptionCode MANAGED_CLASS_MAPPING_ERROR
public static final JaversExceptionCode MALFORMED_CHANGE_TYPE_FIELD
public static final JaversExceptionCode MALFORMED_ENTRY_CHANGE_TYPE_FIELD
public static final JaversExceptionCode CLASS_NOT_MANAGED
public static final JaversExceptionCode COMPONENT_NOT_FOUND
public static final JaversExceptionCode NO_PUBLIC_CONSTRUCTOR
public static final JaversExceptionCode CLASS_NOT_FOUND
public static final JaversExceptionCode CANT_EXTRACT_CHILD_VALUE_OBJECT
public static final JaversExceptionCode CANT_PARSE_COMMIT_ID
public static final JaversExceptionCode CANT_DELETE_OBJECT_NOT_FOUND
public static final JaversExceptionCode CANT_FIND_COMMIT_HEAD_ID
public static final JaversExceptionCode CANT_SAVE_ALREADY_PERSISTED_COMMIT
public static final JaversExceptionCode SQL_EXCEPTION
public static final JaversExceptionCode MALFORMED_JQL
public static final JaversExceptionCode UNSUPPORTED_OPTIONAL_CONTENT_TYPE
public static final JaversExceptionCode RUNTIME_EXCEPTION
public static JaversExceptionCode[] values()
for (JaversExceptionCode c : JaversExceptionCode.values()) System.out.println(c);
public static JaversExceptionCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getMessage()