Name
sn_smd.SMErrorLevel
Description
No description available
Script
var SMErrorLevel = Class.create();
/**
* Anything that can potentially cause application oddities,
* but recovered already. Mainly for information purpose
*/
SMErrorLevel.WARN = 'warning';
/**
* Fatal to the operation and the operation terminated.
* This error Runtime-error / logical error
*/
SMErrorLevel.ERROR = 'error';
/**
* Any error that is forcing a shutdown of the service ,application
* or related chained operations
*/
SMErrorLevel.FATAL = 'fatal';
Sys ID
50f0797ec3612200e2ddb59af3d3aecf