Class: GMIManagerError
Defined in: packages/agentos/src/cognitive_substrate/GMIManager.ts:39
Custom error class for GMIManager-specific operational errors.
Extends
GMIError
Constructors
Constructor
new GMIManagerError(
message,code,details?):GMIManagerError
Defined in: packages/agentos/src/cognitive_substrate/GMIManager.ts:40
Parameters
message
string
code
string
details?
any
Returns
GMIManagerError
Overrides
GMIError.constructor
Properties
cause?
readonlyoptionalcause:unknown
Defined in: packages/agentos/src/utils/errors.ts:147
Inherited from
GMIError.cause
code
readonlycode:string
Defined in: packages/agentos/src/utils/errors.ts:142
Inherited from
component?
readonlyoptionalcomponent:string
Defined in: packages/agentos/src/utils/errors.ts:144
Inherited from
GMIError.component
details?
readonlyoptionaldetails:any
Defined in: packages/agentos/src/utils/errors.ts:143
Inherited from
GMIError.details
httpStatusCode?
readonlyoptionalhttpStatusCode:number
Defined in: packages/agentos/src/utils/errors.ts:146
Inherited from
GMIError.httpStatusCode
message
message:
string
Defined in: apps/agentos-live-docs/node_modules/typescript/lib/lib.es5.d.ts:1077
Inherited from
GMIError.message
name
name:
string
Defined in: apps/agentos-live-docs/node_modules/typescript/lib/lib.es5.d.ts:1076
Inherited from
GMIError.name
stack?
optionalstack:string
Defined in: apps/agentos-live-docs/node_modules/typescript/lib/lib.es5.d.ts:1078
Inherited from
GMIError.stack
timestamp
readonlytimestamp:string
Defined in: packages/agentos/src/utils/errors.ts:145
Inherited from
GMIError.timestamp
stackTraceLimit
staticstackTraceLimit:number
Defined in: packages/agentos/node_modules/@types/node/globals.d.ts:68
The 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.