次の方法で共有


AuthenticationError class

Azure Active Directory での認証に失敗した場合の詳細について説明します。 errorResponse フィールドには、特定のエラーに関する詳細が含まれています。

Extends

Error

コンストラクター

AuthenticationError(number, undefined | null | string | object, { cause?: unknown })

プロパティ

errorResponse

エラー応答の詳細。

statusCode

認証要求から返された HTTP 状態コード。

継承されたプロパティ

message
name
prepareStackTrace

スタック トレースの書式設定の省略可能なオーバーライド

https://v8.dev/docs/stack-trace-api#customizing-stack-traces を参照してください

stack
stackTraceLimit

継承されたメソッド

captureStackTrace(object, Function)

ターゲット オブジェクトに .stack プロパティを作成する

コンストラクターの詳細

AuthenticationError(number, undefined | null | string | object, { cause?: unknown })

new AuthenticationError(statusCode: number, errorBody: undefined | null | string | object, options?: { cause?: unknown })

パラメーター

statusCode

number

errorBody

undefined | null | string | object

options

{ cause?: unknown }

プロパティの詳細

errorResponse

エラー応答の詳細。

errorResponse: ErrorResponse

プロパティ値

statusCode

認証要求から返された HTTP 状態コード。

statusCode: number

プロパティ値

number

継承されたプロパティの詳細

message

message: string

プロパティ値

string

Error.message から継承された

name

name: string

プロパティ値

string

Error.name から継承された

prepareStackTrace

スタック トレースの書式設定の省略可能なオーバーライド

https://v8.dev/docs/stack-trace-api#customizing-stack-traces を参照してください

static prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

プロパティ値

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

Error.prepareStackTrace から継承された

stack

stack?: string

プロパティ値

string

Error.stack から継承された

stackTraceLimit

static stackTraceLimit: number

プロパティ値

number

Error.stackTraceLimit から継承された

継承済みメソッドの詳細

captureStackTrace(object, Function)

ターゲット オブジェクトに .stack プロパティを作成する

static function captureStackTrace(targetObject: object, constructorOpt?: Function)

パラメーター

targetObject

object

constructorOpt

Function

Error.captureStackTrace から継承された