[ new ] ~Error【コンストラクタ】
toString【文字列変換】
[ new ] AggregateError【複数エラー コンストラクタ】
[ new ] ~Error【コンストラクタ】
メモ
概要
- ~Error【各種エラー】オブジェクトを生成
- エラー種類:~Error【各種エラー】オブジェクト
外部リンク
- ECMA-262 (英語)
The Error Constructor ES2024 (15) ES2023 (14) ES2022 (13)
構文
[new] ~Error( message[, options ] )
[new] ~Error( [ number[, description]] )
[new] ~Error( [ message[, fileName[, lineNumber]]] )
各種 Error オブジェクト
message エラーメッセージ (文字列変換)
options (Object) プロパティ オプション
cause: エラー原因
number エラー番号
description エラー説明
fileName エラー ファイル パス名
lineNumber エラー ファイル行番号
例
Error.prototype.toString【文字列変換】
メモ
概要
- エラーを文字列に変換
外部リンク
- ECMA-262 (英語)
Error.prototype.toString ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
Error.toString()
表現文字列
例
[ new ] AggregateError【複数エラー コンストラクタ】
メモ
概要
- AggregateError【各種エラー】オブジェクトを生成
- サブクラス化可能
外部リンク
- ECMA-262 (英語)
The AggregateError Constructor ES2024 (15) ES2023 (14) ES2022 (13)
構文
[new] AggregateError(errors[, message] )
AggregateError オブジェクト
errors エラーのイテラブルオブジェクト
message エラーメッセージ