Extends
Constructors
Constructor
new ConflictError(Defined in: typescript/src/errors/ConflictError.ts:10message,options?):ConflictError
Parameters
message
string
options?
requestId?
string
cause?
unknown
Returns
ConflictError
Overrides
ParmanaError.constructor
Properties
code
Defined in: typescript/src/errors/ParmanaError.ts:61 Stable machine-readable error code.readonlycode:ErrorCode
Inherited from
ParmanaError.code
requestId?
Defined in: typescript/src/errors/ParmanaError.ts:66 Optional request identifier.readonlyoptionalrequestId?:string
Inherited from
ParmanaError.requestId
cause?
Defined in: typescript/src/errors/ParmanaError.ts:71 Optional underlying cause.readonlyoptionalcause?:unknown
Inherited from
ParmanaError.cause
stackTraceLimit
Defined in: node_modules/@types/node/globals.d.ts:68 ThestaticstackTraceLimit:number
Error.stackTraceLimit property specifies the number of stack frames
collected by a stack trace (whether generated by new Error().stack or
Error.captureStackTrace(obj)).
The default value is 10 but may be set to any valid JavaScript number. Changes
will affect any stack trace captured after the value has been changed.
If set to a non-number value, or set to a negative number, stack traces will
not capture any frames.
Inherited from
ParmanaError.stackTraceLimit
name
name: string
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Inherited from
ParmanaError.name
message
message: string
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Inherited from
ParmanaError.message
stack?
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078optionalstack?:string
Inherited from
ParmanaError.stack
Methods
captureStackTrace()
Defined in: node_modules/@types/node/globals.d.ts:52 Creates astaticcaptureStackTrace(targetObject,constructorOpt?):void
.stack property on targetObject, which when accessed returns
a string representing the location in the code at which
Error.captureStackTrace() was called.
${myObject.name}: ${myObject.message}.
The optional constructorOpt argument accepts a function. If given, all frames
above constructorOpt, including constructorOpt, will be omitted from the
generated stack trace.
The constructorOpt argument is useful for hiding implementation
details of error generation from the user. For instance:
Parameters
targetObject
object
constructorOpt?
Function
Returns
void
Inherited from
ParmanaError.captureStackTrace
prepareStackTrace()
Defined in: node_modules/@types/node/globals.d.ts:56staticprepareStackTrace(err,stackTraces):any
Parameters
err
Error
stackTraces
CallSite[]
Returns
any
See
https://v8.dev/docs/stack-trace-api#customizing-stack-tracesInherited from
ParmanaError.prepareStackTrace