Name

sn_smd.SMErrorType

Description

No description available

Script

var SMErrorType = Class.create();

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

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

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

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

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

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

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

Sys ID

5531f57ec3612200e2ddb59af3d3ae0d

Offical Documentation

Official Docs: