C# Class Facebook.OpenGraphException

Inheritance: System.Exception
Mostra file Open project: prabirshrestha/opengraph.net

Public Methods

Method Description
OpenGraphException ( ) : System

Creates a new, empty OpenGraphException.

OpenGraphException ( string message ) : System

Creates a new OpenGraphException with the specified message.

OpenGraphException ( string message, Exception inner ) : System

Creates a new OpenGraphException with the specified message and inner exception.

Protected Methods

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

Creates a new OpenGraphException by deserialization.

Method Details

OpenGraphException() public method

Creates a new, empty OpenGraphException.
public OpenGraphException ( ) : System
return System

OpenGraphException() protected method

Creates a new OpenGraphException by deserialization.
protected OpenGraphException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The serialization data store.
context System.Runtime.Serialization.StreamingContext The serialization context.
return System

OpenGraphException() public method

Creates a new OpenGraphException with the specified message.
public OpenGraphException ( string message ) : System
message string The error message.
return System

OpenGraphException() public method

Creates a new OpenGraphException with the specified message and inner exception.
public OpenGraphException ( string message, Exception inner ) : System
message string The error message.
inner System.Exception The inner exception that caused this exception.
return System