C# Class NetMQ.EndpointNotFoundException

Inheritance: NetMQException
Show file Open project: NetMQ/NetMQ3-x

Public Methods

Method Description
EndpointNotFoundException ( ) : System

Create a new EndpointNotFoundException with no message nor inner-exception.

EndpointNotFoundException ( [ message ) : System

Create a new EndpointNotFoundException with a given message.

EndpointNotFoundException ( [ innerException, [ message ) : System

Create a new EndpointNotFoundException with a given inner-exception and message.

Protected Methods

Method Description
EndpointNotFoundException ( SerializationInfo info, StreamingContext context ) : System

Constructor for serialisation.

Method Details

EndpointNotFoundException() public method

Create a new EndpointNotFoundException with no message nor inner-exception.
public EndpointNotFoundException ( ) : System
return System

EndpointNotFoundException() protected method

Constructor for serialisation.
protected EndpointNotFoundException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

EndpointNotFoundException() public method

Create a new EndpointNotFoundException with a given message.
public EndpointNotFoundException ( [ message ) : System
message [ the textual description of what gave rise to this exception, to expose via the Message property
return System

EndpointNotFoundException() public method

Create a new EndpointNotFoundException with a given inner-exception and message.
public EndpointNotFoundException ( [ innerException, [ message ) : System
innerException [ an Exception for this new exception to contain and expose via its InnerException property
message [ the textual description of what gave rise to this exception, to expose via the Message property
return System