Fields Summary |
---|
public static final String | INTERNALIndicates an internal error condition. |
public static final String | UNDEFINEDUndefined error code. |
public static final String | START_TIMED_OUTIndicates start timeout expiration. |
public static final String | TX_CONCURRENT_WORK_DISALLOWEDIndicates that concurrent work within a transaction is
disallowed. That is, there is already another Work
instance associated with the specified transaction context. |
public static final String | TX_RECREATE_FAILEDIndicates a failure in recreating the specified transaction context. |
Constructors Summary |
---|
public WorkException()Constructs a new instance with null as its detail message.
super();
|
public WorkException(String message)Constructs a new instance with the specified detail message.
super(message);
|
public WorkException(Throwable cause)Constructs a new throwable with the specified cause.
super(cause);
|
public WorkException(String message, Throwable cause)Constructs a new throwable with the specified detail message and cause.
super(message, cause);
|
public WorkException(String message, String errorCode)Constructs a new throwable with the specified detail message and
an error code.
super(message, errorCode);
|