Class OrchestrationServerError
- java.lang.Object
-
- com.vasco.orchestration.client.errors.OrchestrationServerError
-
public class OrchestrationServerError extends java.lang.Object
TheOrchestrationServerError
class is the base class used for asynchronous error management in the Orchestration SDK.
-
-
Constructor Summary
Constructors Constructor Description OrchestrationServerError(java.lang.String readableMessage)
ConstructorOrchestrationServerError(java.lang.String readableMessage, java.lang.String customPayload)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCustomPayload()
return custom payload set by the server integrator which can contain any extra information on the errorjava.lang.String
getReadableMessage()
return readable message describing the error
-
-
-
Constructor Detail
-
OrchestrationServerError
public OrchestrationServerError(java.lang.String readableMessage)
Constructor- Parameters:
readableMessage
- human readable message describing the error
-
OrchestrationServerError
public OrchestrationServerError(java.lang.String readableMessage, java.lang.String customPayload)
Constructor- Parameters:
readableMessage
- human readable message describing the errorcustomPayload
- customPayload set by the server integrator which can contain any extra information on the error
-
-
Method Detail
-
getReadableMessage
public java.lang.String getReadableMessage()
return readable message describing the error- Returns:
- exception
-
getCustomPayload
public java.lang.String getCustomPayload()
return custom payload set by the server integrator which can contain any extra information on the error- Returns:
- customPayload
-
-