@vara/custom-logic-sdk
Version:
Server Side JavaScript SDK for Custom Business Logic
32 lines • 1.22 kB
JSON
{
"ResourceNotFoundError": {
"name": "ResourceNotFoundError",
"message": "Requested resource could not be found",
"statusCode": 404,
"code": "RESOURCE_NOT_FOUND"
},
"ValidationError": {
"name": "ValidationError",
"message": "Request could not be fulfilled as input was invalid",
"statusCode": 400,
"code": "VALIDATION_ERROR"
},
"InvalidAPIResponderError": {
"name": "InvalidAPIResponderError",
"message": "API responder could not be configured by the SDK as registration input was invalid, please see the Custom Logic SDK for more information on how to register custom code",
"statusCode": 500,
"code": "API_RESPONDER_REGISTRATION_ERROR"
},
"InvalidClActionError": {
"name": "InvalidCustomLogicActionError",
"message": "Custom logic action could not be configured by the SDK as registration input was invalid, please see the Custom Logic SDK for more information on how to register custom code",
"statusCode": 500,
"code": "CUSTOM_LOGIC_ACTION_REGISTRATION_ERROR"
},
"InternalError": {
"name": "InternalError",
"message": "Something went wrong while processing request",
"statusCode": 500,
"code": "INTERNAL_ERROR"
}
}