Artifact [3021941017] Вы: nobody
Вход

Artifact 302194101722beeef25a2b31bf59f8e812982983:


$engine JScript
$uname testExceptionsLib

var ErrorHandler = null;

function SetErrorHandler(errorHandler)
{
    ErrorHandler = errorHandler;
}

function throwError(e)
{
    if (ErrorHandler)
    {
        ErrorHandler.call(null, e);   
        //ErrorHandler(e);   
        return e;
    }

    throw e;
}

function throwErrorFunction()
{
    throw "Excepiton from testExceptionsLib.throwErrorFunction()";
}

function macrosThrowErrorMacros()
{
    throw "Excepiton from testExceptionsLib.throwErrorMacros()";
}

function throwErrorFunctionWorkaround()
{
    throwError("Excepiton from testExceptionsLib.throwErrorFunction()");
}