SembleConfigError
n8n-nodes-semble / core/SembleError / SembleConfigError
Class: SembleConfigError¶
Defined in: core/SembleError.ts:311
Configuration-related errors
Handles setup and configuration issues: - Missing required configuration - Invalid configuration values - Environment-specific issues - Integration setup problems
Extends¶
Constructors¶
Constructor¶
new SembleConfigError(
message
,configKey?
,expectedType?
,actualValue?
,context?
):SembleConfigError
Defined in: core/SembleError.ts:316
Parameters¶
message¶
string
configKey?¶
string
expectedType?¶
string
actualValue?¶
any
context?¶
ErrorContext
= {}
Returns¶
SembleConfigError
Overrides¶
Methods¶
toJSON()¶
toJSON():
Record
\<string
,any
>
Defined in: core/SembleError.ts:73
Converts error to JSON for logging and serialization
Returns¶
Record
\<string
, any
>
Inherited from¶
getUserMessage()¶
getUserMessage():
string
Defined in: core/SembleError.ts:330
Generates user-friendly error message
Returns¶
string
Overrides¶
isRetryable()¶
isRetryable():
boolean
Defined in: core/SembleError.ts:337
Checks if error is retryable based on category and code
Returns¶
boolean
Overrides¶
Properties¶
code¶
readonly
code:string
Defined in: core/SembleError.ts:43
Inherited from¶
category¶
readonly
category:ErrorCategory
Defined in: core/SembleError.ts:44
Inherited from¶
severity¶
readonly
severity:ErrorSeverity
Defined in: core/SembleError.ts:45
Inherited from¶
context¶
readonly
context:ErrorContext
Defined in: core/SembleError.ts:46
Inherited from¶
timestamp¶
readonly
timestamp:Date
Defined in: core/SembleError.ts:47
Inherited from¶
configKey?¶
readonly
optional
configKey:string
Defined in: core/SembleError.ts:312
expectedType?¶
readonly
optional
expectedType:string
Defined in: core/SembleError.ts:313
actualValue?¶
readonly
optional
actualValue:any
Defined in: core/SembleError.ts:314