NotFoundError
talawa-api • Docs
talawa-api / libraries/errors/notFoundError / NotFoundError
Class: NotFoundError
Represents a "Not Found" error. It extends the ApplicationError class and is used to handle situations where a requested resource is not found.
Extends
Constructors
new NotFoundError()
> new NotFoundError(message
, code
, param
, metadata
): NotFoundError
Creates an instance of NotFoundError.
Parameters
• message: string
= "Not Found"
The error message. Defaults to "Not Found".
• code: null
| string
= null
The error code. Can be null. Defaults to null.
• param: null
| string
= null
The parameter related to the error. Can be null. Defaults to null.
• metadata: Record
<any
, any
> = \{\}
Additional metadata related to the error. Defaults to an empty object.
Returns
Overrides
Defined in
src/libraries/errors/notFoundError.ts:15
Properties
errors
> errors: InterfaceError
[]
An array of errors conforming to the InterfaceError interface
Inherited from
Defined in
src/libraries/errors/applicationError.ts:21
httpCode
> httpCode: number
The HTTP status code associated with the error
Inherited from
Defined in
src/libraries/errors/applicationError.ts:23
message
> message: string
Inherited from
Defined in
node_modules/typescript/lib/lib.es5.d.ts:1077
name
> name: string
Inherited from
Defined in
node_modules/typescript/lib/lib.es5.d.ts:1076
stack?
> optional
stack: string
Inherited from
Defined in
node_modules/typescript/lib/lib.es5.d.ts:1078
prepareStackTrace()?
> static
optional
prepareStackTrace: (err
, stackTraces
) => any
Optional override for formatting stack traces
Parameters
• err: Error
• stackTraces: CallSite
[]
Returns
any
See
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Inherited from
ApplicationError
.prepareStackTrace
Defined in
node_modules/@types/node/globals.d.ts:143
stackTraceLimit
> static
stackTraceLimit: number
Inherited from
ApplicationError
.stackTraceLimit
Defined in
node_modules/@types/node/globals.d.ts:145
Methods
captureStackTrace()
> static
captureStackTrace(targetObject
, constructorOpt
?): void
Create .stack property on a target object
Parameters
• targetObject: object
• constructorOpt?: Function
Returns
void
Inherited from
ApplicationError
.captureStackTrace
Defined in
node_modules/@types/node/globals.d.ts:136