Type Method
型メソッド
exceptionWithName:reason:userInfo:
Creates and returns an exception object .
例外オブジェクトを作成して返します。
Parameters
パラメータ
name
The name of the exception.
例外の名前。
reason
A human-readable message string summarizing the reason for the exception.
人の読みやすいメッセージ文字列、例外の理由を要約しています。
userInfo
A dictionary containing user-defined information relating to the exception
例外に関連しているユーザ定義の情報を含んでいる辞書。
Return Value
戻り値
The created NSException
object or nil
if the object couldn't be created.
作成されたNSException
オブジェクト、またはnil
、もしオブジェクトが作成できなかったならば。
See Also
参照
Creating and Raising an NSException Object
NSExceptionオブジェクトを作成するそして引き起こす
+ raise:format:
A convenience method that creates and raises an exception.
例外を作成して引き起こす便宜メソッド。し
+ raise:format:arguments:
Creates and raises an exception with the specified name, reason, and arguments.
ある例外をこの指定された名前、理由、そして引数で作成して引き起こします。
- raise
Raises the receiver, causing program flow to jump to the local exception handler.
レシーバを引き起こします、プログラムの流れをローカル例外ハンドラにジャンプさせます。
Related Documentation
関連文書
userInfo
A dictionary containing application-specific data pertaining to the receiver.
レシーバに関係があるアプリケーション固有のデータを含んでいる辞書。
reason
A string containing a “human-readable” reason for the receiver.
レシーバに対する “人に読みやすい” 理由を含んでいる文字列。
name
A string used to uniquely identify the receiver.
レシーバーを特有に識別するのに使われる文字列。