Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.57 KB

libraries_errors_conflictError.ConflictError.md

File metadata and controls

212 lines (115 loc) · 5.57 KB

talawa-api / Exports / libraries/errors/conflictError / ConflictError

Class: ConflictError

libraries/errors/conflictError.ConflictError

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

Hierarchy

Table of contents

Constructors

Properties

Methods

Constructors

constructor

new ConflictError(message?, code?, param?, metadata?): ConflictError

Parameters

Name Type Default value
message string "Conflicting entry found"
code null | string null
param null | string null
metadata Record<any, any> \{\}

Returns

ConflictError

Overrides

ApplicationError.constructor

Defined in

src/libraries/errors/conflictError.ts:6

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