require(["esri/core/Error"], (Error) => { /* code goes here */ });
import Error from "@arcgis/core/core/Error.js";
esri/core/Error
Error is a class that enhances the debugging and error handling process. Rather than returning a generic JavaScript error, this Error returns a standardized error object with several properties. The error class can be useful in many scenarios, such as working with promises, the esriRequest module, and many different layers and widgets.
- See also
button.on("click", function() {
esriRequest(url, options).then(function(response) {
// do something useful
}).catch(function(error){
console.log("informative error message: ", error.message);
});
});
Constructors
Property Overview
Name | Type | Summary | Class |
---|---|---|---|
The details object provides additional details specific to the error, giving more information about why the error was raised. | Error | ||
A message describing the details of the error. | Error | ||
A unique error name. | Error |
Property Details
-
The details object provides additional details specific to the error, giving more information about why the error was raised. For example, the details object for esriRequest includes additional information to help the developer diagnose issues with a problematic request.
ExamplesomeAsyncFunction.then(callback) .catch(function(error){ console.log("Error details: ", error.details); });
-
message
message String
-
A message describing the details of the error.
ExamplesomeAsyncFunction.then(callback) .catch(function(error){ console.log("Error message: ", error.message); });
-
name
name String
-
A unique error name. This can be used to map to a localized error message to present to the user.
ExamplesomeAsyncFunction.then(callback) .catch(function(error){ console.log("Error name: ", error.name); });