C# Class SharpAdbClient.Exceptions.AdbException

Represents an exception with communicating with ADB
Inheritance: System.Exception
ファイルを表示 Open project: ArduPilot/MissionPlanner

Public Methods

Method Description
AdbException ( ) : System

Initializes a new instance of the AdbException class.

AdbException ( SerializationInfo serializationInfo, StreamingContext context ) : System

Initializes a new instance of the AdbException class.

AdbException ( string message ) : System

Initializes a new instance of the AdbException class with the specified error message.

AdbException ( string message, AdbResponse response ) : System

Initializes a new instance of the AdbException class with the specified client error message and AdbResponse

AdbException ( string message, Exception innerException ) : System

Initializes a new instance of the AdbException class.

AdbException ( string message, string adbError ) : System

Initializes a new instance of the AdbException class with the specified client error message and adb error message.

Method Details

AdbException() public method

Initializes a new instance of the AdbException class.
public AdbException ( ) : System
return System

AdbException() public method

Initializes a new instance of the AdbException class.
public AdbException ( SerializationInfo serializationInfo, StreamingContext context ) : System
serializationInfo System.Runtime.Serialization.SerializationInfo The serialization info.
context System.Runtime.Serialization.StreamingContext The context.
return System

AdbException() public method

Initializes a new instance of the AdbException class with the specified error message.
public AdbException ( string message ) : System
message string /// The message that describes the error. ///
return System

AdbException() public method

Initializes a new instance of the AdbException class with the specified client error message and AdbResponse
public AdbException ( string message, AdbResponse response ) : System
message string /// The message that describes the error on the client side. ///
response AdbResponse /// The that was sent by adb. ///
return System

AdbException() public method

Initializes a new instance of the AdbException class.
public AdbException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System

AdbException() public method

Initializes a new instance of the AdbException class with the specified client error message and adb error message.
public AdbException ( string message, string adbError ) : System
message string /// The message that describes the error on the client side. ///
adbError string /// The raw error message that was sent by adb. ///
return System