@cuties/error
v1.1.4
Published
Cutie extension for error module in Node.
Downloads
21
Readme
cutie-error
Cutie extension for error module in Node. It's based on the Async Tree Pattern.
Examples
You can find examples of using this library in the test directory.
Install
npm install @cuties/error
Run test
npm test
Run build
npm run build
Usage
const {
// Needed async objects here from the table below
} = require('@cuties/error');
For more information about parameters in the async objects visit docs of Node for error module.
| Async Object | Async/sync call | Parameters(default value/description) | Representation result |
| ------------- | ----------------| ---------- | --------------------- |
| CapturedStackTrace
| Error.captureStackTrace
| targetObject, constructorOpt
| targetObject
|
| Errno
| error.errno
| error
| string\|number
|
| ErrorAddress
| error.address
| error
| string
|
| ErrorCode
| error.code
| error
| string
|
| ErrorMessage
| error.message
| error
| string
|
| ErrorPath
| error.path
| error
| string
|
| ErrorPort
| error.port
| error
| number
|
| ErrorStack
| error.stack
| error
| string
|
| ErrorSyscall
| error.syscall
| error
| string
|
| SetStackTraceLimit
| Error.stackTraceLimit
| num
| num
|
| StackTraceLimit
| Error.stackTraceLimit
| | num
|
| ThrownError
| throw error
| | |