Type Method
型メソッド
errorWithDomain:code:userInfo:
Creates and initializes an NSError
object for a given domain and code with a given userInfo
dictionary.
あるNSError
オブジェクトを、ある与えられたドメインとコードに対して、ある与えられたuserInfo
辞書で、作成して初期化します。
Parameters
パラメータ
domain
The error domain—this can be one of the predefined NSError
domains, or an arbitrary string describing a custom domain. domain
must not be nil
. See Error Domains
for a list of predefined domains.
エラードメイン — これはあらかじめ定義されたNSError
ドメインの1つ、またはあつらえのドメインを記述している随意の文字列であることができます。domain
はnil
であってはいけません。Error Domains
をあらかじめ定義されたドメインの一覧として見てください。
code
The error code for the error.
このエラーのためのエラーコード。
dict
The userInfo
dictionary for the error. userInfo
may be nil
.
このエラーのためのuserInfo
辞書。userInfo
はnil
であるかもしれません。
Return Value
戻り値
An NSError
object for domain
with the specified error code
and the dictionary of arbitrary data userInfo
.
あるNSError
オブジェクトで、domain
に対する、この指定されたエラーcode
と随意データuserInfo
辞書を持ちます。
See Also
参照
Creating Error Objects
エラーオブジェクトを作成する
- initWithDomain:code:userInfo:
Returns an NSError
object initialized for a given domain and code with a given userInfo
dictionary.
あるNSError
オブジェクトを返します、ある与えられたドメインとコードに対して、ある与えられたuserInfo
辞書で、初期化されます。
Related Documentation
関連文書