Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

throw 文

throw 文は例外を投げるために使用します。例外を投げるときは、投げたい値からなる式を指定してください。

throw expression;

特定の型の式だけではなく、あらゆる式を投げることができます。下記のコードは様々な型の例外を投げています。

throw "Error2";
throw 42;
throw true;
throw {toString: function() { return "I'm an object!"; } };
注意:例外を投げる際にオブジェクトを指定することができます。すると、catch ブロックでそのオブジェクトのプロパティを参照できるようになります。次の例では UserException という種類の myUserException というオブジェクトを作ります。また、このオブジェクトを throw 文で使用します。
// UserException という種類のオブジェクトを作成
function UserException (message)
{
  this.message=message;
  this.name="UserException";
}

// 文字列として使用されるとき(例:エラーコンソール上)に
// 例外を整形する
UserException.prototype.toString = function ()
{
  return this.name + ': "' + this.message + '"';
}

// そのオブジェクトの種類のインスタンスを作成し、それを投げる
throw new UserException("Value too high");

ドキュメントのタグと貢献者

 このページの貢献者: ethertank, happysadman, Makkurokiiro, Electrolysis, Mgjbot
 最終更新者: ethertank,