Skip to main content

Class: OutOfBoundsError

mugshot.OutOfBoundsError

Hierarchy#

  • Error

    OutOfBoundsError

Constructors#

constructor#

+ new OutOfBoundsError(x1: number, y1: number, w1: number, h1: number, w2: number, h2: number): OutOfBoundsError

Parameters:#

NameType
x1number
y1number
w1number
h1number
w2number
h2number

Returns: OutOfBoundsError

Overrides: Error.constructor

Defined in: packages/mugshot/src/interfaces/png-processor.ts:41

Properties#

message#

message: string

Inherited from: Error.message

Defined in: node_modules/typescript/lib/lib.es5.d.ts:974


name#

name: string

Inherited from: Error.name

Defined in: node_modules/typescript/lib/lib.es5.d.ts:973


stack#

Optional stack: string

Inherited from: Error.stack

Defined in: node_modules/typescript/lib/lib.es5.d.ts:975


prepareStackTrace#

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

Optional override for formatting stack traces

see https://github.com/v8/v8/wiki/Stack%20Trace%20API#customizing-stack-traces

Type declaration:#

▸ (err: Error, stackTraces: CallSite[]): any

Parameters:#

NameType
errError
stackTracesCallSite[]

Returns: any

Defined in: node_modules/@types/node/globals.d.ts:140

Inherited from: Error.prepareStackTrace

Defined in: node_modules/@types/node/globals.d.ts:140


stackTraceLimit#

Static stackTraceLimit: number

Inherited from: Error.stackTraceLimit

Defined in: node_modules/@types/node/globals.d.ts:142

Methods#

captureStackTrace#

StaticcaptureStackTrace(targetObject: Object, constructorOpt?: Function): void

Create .stack property on a target object

Parameters:#

NameType
targetObjectObject
constructorOpt?Function

Returns: void

Inherited from: Error.captureStackTrace

Defined in: node_modules/@types/node/globals.d.ts:133