@gala-chain/api • Readme | API
@gala-chain/api / ChainError
Class: abstract ChainError
Extends
Error
Implements
Constructors
new ChainError(message)
new ChainError(
message):ChainError
Parameters
• message: string
Returns
Overrides
Error.constructor
Source
chain-api/src/utils/error.ts:59
new ChainError(message, key)
new ChainError(
message,key):ChainError
Parameters
• message: string
• key: Uppercase\<string>
Returns
Overrides
Error.constructor
Source
chain-api/src/utils/error.ts:60
new ChainError(message, key, payload)
new ChainError(
message,key,payload):ChainError
Parameters
• message: string
• key: Uppercase\<string>
• payload: Record\<string, unknown>
Returns
Overrides
Error.constructor
Source
chain-api/src/utils/error.ts:61
new ChainError(message, payload)
new ChainError(
message,payload):ChainError
Parameters
• message: string
• payload: unknown
Returns
Overrides
Error.constructor
Source
chain-api/src/utils/error.ts:62
Properties
code
readonlycode:ErrorCode
Status code, a value from ErrorCode enum. It is directly mapped to HTTP, status, it is a constant value to be used by clients integrating with the chain.
Implementation of
Source
chain-api/src/utils/error.ts:45
key
readonlykey:Uppercase\<string>
An upper case string to be used as a key do diagnose where the error comes from and help with regular development. It should not be used by client integrating with the chain since we don't guarantee it won't change. It is generated from original error class name.
Implementation of
Source
chain-api/src/utils/error.ts:53
message
message:
string
Implementation of
OptionalChainErrorData.message
Inherited from
Error.message
Source
node_modules/typescript/lib/lib.es5.d.ts:1076
name
name:
string
Inherited from
Error.name
Source
node_modules/typescript/lib/lib.es5.d.ts:1075
payload?
optionalreadonlypayload:Record\<string,unknown>
Additional information to be used by
Implementation of
OptionalChainErrorData.payload
Source
chain-api/src/utils/error.ts:58
stack?
optionalstack:string
Inherited from
Error.stack
Source
node_modules/typescript/lib/lib.es5.d.ts:1077
prepareStackTrace()?
staticoptionalprepareStackTrace: (err,stackTraces) =>any
Optional override for formatting stack traces
See
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Parameters
• err: Error
• stackTraces: CallSite[]
Returns
any
Inherited from
Error.prepareStackTrace
Source
node_modules/@types/node/globals.d.ts:11
stackTraceLimit
staticstackTraceLimit:number
Inherited from
Error.stackTraceLimit
Source
node_modules/@types/node/globals.d.ts:13
Methods
andExec()
andExec(
fn):ChainError
Allows to execute function getting as a parameter the current error.
Parameters
• fn
Returns
Example
Source
chain-api/src/utils/error.ts:114
logError()
logError(
logger):ChainError
Parameters
• logger
• logger.error
Returns
Source
chain-api/src/utils/error.ts:119
logWarn()
logWarn(
logger):ChainError
Parameters
• logger
• logger.warn
Returns
Source
chain-api/src/utils/error.ts:124
map()
map(
key,newError):ChainError
Maps ChainError to another chain error by error code if key param matches
current error code or current diagnostic key. Otherwise, returns original
error.
Useful in rethrowing an error or mapping an error to another one in catch clauses or catch methods in promises.
Parameters
• key: ErrorCode | ClassConstructor\<ChainError>
error code or error class to match
• newError: ChainError | (e) => ChainError
new error or a function to create the new error
Returns
Source
chain-api/src/utils/error.ts:148
matches()
matches(
key):boolean
Parameters
• key: ErrorCode | ClassConstructor\<ChainError>
Returns
boolean
Source
chain-api/src/utils/error.ts:129
captureStackTrace()
staticcaptureStackTrace(targetObject,constructorOpt?):void
Create .stack property on a target object
Parameters
• targetObject: object
• constructorOpt?: Function
Returns
void
Inherited from
Error.captureStackTrace
Source
node_modules/@types/node/globals.d.ts:4
from()
staticfrom(e):ChainError
Parameters
• e: object & object
Returns
Source
chain-api/src/utils/error.ts:168
isChainError()
staticisChainError(e):e is ChainError
Parameters
• e: undefined | object
Returns
e is ChainError
Source
chain-api/src/utils/error.ts:164
map()
staticmap(e,key,newError):ChainError
Maps ChainError to another chain error by error code, or returns original error if no error code matches, or returns default chain error if a given parameter is not a ChainError instance.
Useful in rethrowing an error or mapping an error to another one in catch clauses or catch methods in promises.
Parameters
• e: ChainError | object
original error
• key: ErrorCode | ClassConstructor\<ChainError>
error code or error class to match
• newError: ChainError | (e) => ChainError
new error or a function to create the new error
Returns
Source
chain-api/src/utils/error.ts:191
matches()
staticmatches(e,key):boolean
Parameters
• e: ChainError | object
• key: ErrorCode | ClassConstructor\<ChainError>
Returns
boolean
Source
chain-api/src/utils/error.ts:172
normalizedKey()
staticnormalizedKey(fn):Uppercase\<string>
Parameters
• fn: string | Function
Returns
Uppercase\<string>
Source
chain-api/src/utils/error.ts:80
withCode()
staticwithCode(code):ClassConstructor\<ChainError>
Parameters
• code: ErrorCode
Returns
ClassConstructor\<ChainError>