C# Class TUP.AsmResolver.Exceptions.InvalidInstructionException

Occures when an invalid instruction is detected or tried to be processed.
Inheritance: System.Exception
ファイルを表示 Open project: Rex-Hays/GNIDA

Public Methods

Method Description
InvalidInstructionException ( string message ) : System

Creates a new instance of the InvalidInstructionException.

InvalidInstructionException ( string message, byte bytes, Win32Assembly assembly ) : System

Creates a new instance of the InvalidInstructionException.

Method Details

InvalidInstructionException() public method

Creates a new instance of the InvalidInstructionException.
public InvalidInstructionException ( string message ) : System
message string The message of the error.
return System

InvalidInstructionException() public method

Creates a new instance of the InvalidInstructionException.
public InvalidInstructionException ( string message, byte bytes, Win32Assembly assembly ) : System
message string The message of the error.
bytes byte The corresponding bytes.
assembly Win32Assembly The assembly where the error occured.
return System