初期値指定コンストラクタ

Namespace: FVIL
Assembly: FVILbasic (in FVILbasic.dll) Version: 3.1.0.0 (3.1.0.17)

Syntax

C#
public CFviException(
	int error_code,
	string function,
	string message
)
Visual Basic
Public Sub New ( 
	error_code As Integer,
	function As String,
	message As String
)

Parameters

error_code
Type: System..::..Int32
例外の原因を示すエラーコード
function
Type: System..::..String
例外発生場所を示す関数名
message
Type: System..::..String
例外メッセージ

Remarks

引数 error_code, function に指定した値を、それぞれ ErrorCode メンバと Function メンバに設定し、 message に指定した文字列を、System.ExceptionMessage メンバに設定して インスタンスを構築します。

See Also