Name

sn_capi.CAPIErrorLevel

Description

No description available

Script

var CAPIErrorLevel = Class.create();

/**
* Anything that can potentially cause application oddities, 
* but recovered already. Mainly for information purpose
*/
CAPIErrorLevel.WARN = 'warning';

/**
* Fatal to the operation and the operation terminated. 
* This error Runtime-error / logical error
*/
CAPIErrorLevel.ERROR = 'error';

/**
* Any error that is forcing a shutdown of the service ,application 
* or related chained operations
*/
CAPIErrorLevel.FATAL = 'fatal';

Sys ID

ed9fde4f0b943200a91f6707b6673a98

Offical Documentation

Official Docs: