Initializes a new instance of the AssemblerException class.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public AssemblerException(
	string message,
	Exception inner
)
Visual Basic
Public Sub New ( _
	message As String, _
	inner As Exception _
)
Visual C++
public:
AssemblerException(
	String^ message, 
	Exception^ inner
)

Parameters

message
Type: System..::..String
The message that describes the error.
inner
Type: System..::..Exception
The exception that is the cause of the current exception; or nullNothingnullptra null reference (Nothing in Visual Basic) if no inner exception is specified.

See Also