C# Class BridgeStack.BridgeException

Inheritance: System.Exception, IBridgeException
Show file Open project: bevacqua/BridgeStack

Public Methods

Method Description
BridgeException ( string message ) : System

Wraps an exception thrown by the bridge.

BridgeException ( string message, Exception e ) : System

Wraps an exception thrown by the bridge.

BridgeException ( string message, Exception e, IApiException details ) : System

Wraps an exception thrown by the bridge.

Method Details

BridgeException() public method

Wraps an exception thrown by the bridge.
public BridgeException ( string message ) : System
message string The error message.
return System

BridgeException() public method

Wraps an exception thrown by the bridge.
public BridgeException ( string message, Exception e ) : System
message string The error message.
e System.Exception The exception being wrapped.
return System

BridgeException() public method

Wraps an exception thrown by the bridge.
public BridgeException ( string message, Exception e, IApiException details ) : System
message string The error message.
e System.Exception The exception being wrapped.
details IApiException The API exception details
return System