Instance Property
インスタンスプロパティ
scriptErrorString
Sets a script error string that is associated with execution of the command.
そのコマンドの実行と結び付けられるスクリプトエラー文字列を設定します。
Declaration
宣言
@property(copy) NSString
*scriptErrorString;
Parameters
パラメータ
errorString
A string that describes an error.
エラーを記述する文字列。
Discussion
議論
If you override performDefaultImplementation
and an error occurs, you should call this method to supply a string that provides a useful explanation. In fact, any script handler should call this method when an error occurs.
あなたがperformDefaultImplementation
をオーバーライドしてエラーが発生するならば、あなたはこのメソッドを呼び出すことで有益な説明を提供する文字列を提供すべきです。実際、どんなスクリプトハンドラでも、エラーが発生する時このメソッドを呼び出すべきです。
Calling this method alone does not cause an error message to be be displayed—you must also call scriptErrorNumber
to supply an error number.
このメソッドを単独で呼び出すことは、エラーメッセージが表示されることを引き起こしません — あなたはまたscriptErrorNumber
を呼び出してエラー番号を提供しなければなりません。
See Also
参照
Handling script execution errors
スクリプト実行エラーを取り扱う
scriptErrorExpectedTypeDescriptor
Sets a descriptor for the expected type that will be put in the reply Apple event if the sender requested a reply, execution of the receiver completes, and an error number was set.
センダーが返答を要求した、レシーバの実行が完了する、そしてエラー番号が設定されたならば返答アップルイベントに置かれる、期待される型に対する記述子を設定します。
scriptErrorNumber
Sets a script error number that is associated with the execution of the command and is returned in the reply Apple event, if a reply was requested by the sender.
返答がセンダーによって要求されたならば、返答アップルイベントにおいて返される、コマンドの実行と結び付けられる、スクリプトエラー番号を設定します。
scriptErrorOffendingObjectDescriptor
Sets a descriptor for an object that will be put in the reply Apple event if the sender requested a reply, execution of the receiver completes, and an error number was set.
センダーが返答を要求した、レシーバの実行が完了する、そしてエラー番号が設定されたならば返答アップルイベントに置かれる、あるオブジェクトに対する記述子を設定します。