Name

sn_capi.CAPIErrorType

Description

No description available

Script

var CAPIErrorType = Class.create();

/**
* Unknown error type. Use this type when error type is not clear.
*/
CAPIErrorType.UNKNOWN = 'UNKNOWN_ERROR_TYPE';

/**
* Related to data CRUD error caused by Java layer.
*/
CAPIErrorType.JAVA_API = 'JAVA_API_ERROR_TYPE';

/**
* Business logic related errors
*/
CAPIErrorType.SCRIPT_API = 'SCRIPT_API_ERROR_TYPE';

/**
* Workflow operation related errors.
*/
CAPIErrorType.WF = 'WF_ERROR_TYPE';

/**
* Errors occurred while processing deployments.
*/
CAPIErrorType.DEPLOYMENT = 'DEPLOYMENT_ERROR_TYPE';

/**
* Errors occurred while downloading artifacts.
*/
CAPIErrorType.DOWNLOAD = 'DOWNLOAD_ERROR_TYPE';

/**
* Error type that can be used when performing validation.
*/
CAPIErrorType.VALIDATION = 'VALIDATION_ERROR_TYPE';

Sys ID

cd42ae8f0b943200a91f6707b6673a33

Offical Documentation

Official Docs: