Modules

filter

 

Objects/Functions

module (N/error)

SuiteScript 2.0

SuiteScriptError.cause

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=SuiteScriptError.cause for more information.

N/error Module
SuiteScriptError.cause
Property Description: The cause of the error.
Type: string (read-only)
Supported Script Types: All server scripts that are not user event scripts. For more information, see SuiteScript 2.0 Script Types.
Module: N/error Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=SuiteScriptError.cause

Example:

// Code Example 1
//Add additional code
//...
var SScustom_error = error.create({
name: 'MY_ERROR_CODE',
message: 'my custom SuiteScriptError details',
cause: 'the cause of the error',
notifyOff: false
});
log.debug("Error cause: " + SScustom_error.cause); // 'Error cause: ' followed by the cause will be logged
...
//Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_158049399342.html