Modules

filter

 

Objects/Functions

module (N/error)

SuiteScript 2.0

SuiteScriptError.type

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

N/error Module
SuiteScriptError.type
Property Description: Error types. Use values defined in error.Type.
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.type

Example:

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

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