Skip to content

Latest commit

 

History

History
210 lines (113 loc) · 5.7 KB

libraries_errors_validationError.ValidationError.md

File metadata and controls

210 lines (113 loc) · 5.7 KB

talawa-api / Exports / libraries/errors/validationError / ValidationError

Class: ValidationError

libraries/errors/validationError.ValidationError

This class detects validation errors and sends those errors to the superclass ApplicationError.

Hierarchy

Table of contents

Constructors

Properties

Methods

Constructors

constructor

new ValidationError(errors?, message?): ValidationError

Parameters

Name Type Default value
errors InterfaceError[] []
message string "Validation error"

Returns

ValidationError

Overrides

ApplicationError.constructor

Defined in

src/libraries/errors/validationError.ts:7

Properties

errors

errors: InterfaceError[]

Inherited from

ApplicationError.errors

Defined in

src/libraries/errors/applicationError.ts:11


httpCode

httpCode: number

Inherited from

ApplicationError.httpCode

Defined in

src/libraries/errors/applicationError.ts:12


message

message: string

Inherited from

ApplicationError.message

Defined in

node_modules/typescript/lib/lib.es5.d.ts:1076


name

name: string

Inherited from

ApplicationError.name

Defined in

node_modules/typescript/lib/lib.es5.d.ts:1075


stack

Optional stack: string

Inherited from

ApplicationError.stack

Defined in

node_modules/typescript/lib/lib.es5.d.ts:1077


prepareStackTrace

Static Optional prepareStackTrace: (err: Error, stackTraces: CallSite[]) => any

Optional override for formatting stack traces

See

https://v8.dev/docs/stack-trace-api#customizing-stack-traces

Type declaration

▸ (err, stackTraces): any

Optional override for formatting stack traces

Parameters
Name Type
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:28


stackTraceLimit

Static stackTraceLimit: number

Inherited from

ApplicationError.stackTraceLimit

Defined in

node_modules/@types/node/globals.d.ts:30

Methods

captureStackTrace

captureStackTrace(targetObject, constructorOpt?): void

Create .stack property on a target object

Parameters

Name Type
targetObject object
constructorOpt? Function

Returns

void

Inherited from

ApplicationError.captureStackTrace

Defined in

node_modules/@types/node/globals.d.ts:21