C# Class Imgur.API.MashapeException

The exception that is thrown when an error is found in a response from a Mashape endpoint.
Inheritance: System.Exception
ファイルを表示 Open project: DamienDennehy/Imgur.API

Public Methods

Method Description
MashapeException ( string message ) : System

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

MashapeException ( string message, Exception innerException ) : System

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

Method Details

MashapeException() public method

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

MashapeException() public method

Initializes a new instance of the MashapeException class with a specified error message.
public MashapeException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException System.Exception The exception that is the cause of the current exception.
return System