Abstract Class: DaggerSDKError
The base error. Every other error inherits this error.
Extends
Error
Extended by
UnknownDaggerErrorDockerImageRefValidationErrorEngineSessionConnectParamsParseErrorExecErrorGraphQLRequestErrorInitEngineSessionBinaryErrorTooManyNestedObjectsErrorEngineSessionErrorEngineSessionConnectionTimeoutErrorNotAwaitedRequestErrorFunctionNotFoundIntrospectionError
Properties
cause?
optionalcause?:Error
The original error, which caused the DaggerSDKError.
Overrides
Error.cause
code
abstractreadonlycode:ErrorCodes
The dagger specific error code. Use this to identify dagger errors programmatically.
message
message:
string
Inherited from
Error.message
name
abstractreadonlyname:"GraphQLRequestError"|"UnknownDaggerError"|"TooManyNestedObjectsError"|"EngineSessionConnectParamsParseError"|"EngineSessionConnectionTimeoutError"|"EngineSessionError"|"InitEngineSessionBinaryError"|"DockerImageRefValidationError"|"NotAwaitedRequestError"|"ExecError"|"IntrospectionError"
The name of the dagger error.
Overrides
Error.name
stack?
optionalstack?:string
Inherited from
Error.stack
Methods
printStackTrace()
printStackTrace():
void
Pretty prints the error
Returns
void