Type Method 型メソッド

raise(_:format:arguments:)

Creates and raises an exception with the specified name, reason, and arguments. ある例外をこの指定された名前、理由、そして引数で作成して引き起こします。

Declaration 宣言

class func raise(_ name: NSExceptionName, 
          format: String, 
       arguments argList: CVaListPointer)

Parameters パラメータ

name

The name of the exception. 例外の名前。

format

A human-readable message string (that is, the exception reason) with conversion specifications for the variable arguments in argList. 人の読みやすいメッセージ文字列(すなわち、例外の理由)、argListの中の変数引数に対する変換仕様を持ちます。

argList

Variable information to be inserted into the formatted exception reason (in the manner of vprintf). 書式設定された例外理由へと挿入されることになる変数情報(vprintfの流儀で)。

Discussion 議論

The user-defined dictionary of the generated object is nil. 生成されたオブジェクトのユーザ定義辞書はnilです。

See Also 参照

Creating and Raising an NSException Object NSExceptionオブジェクトを作成するそして引き起こす

Related Documentation 関連文書