C# Class Todoist.NET.ProjectException

Inheritance: System.SystemException
ファイルを表示 Open project: jbfp/Todoist.NET

Public Methods

Method Description
ProjectException ( ) : System

Initializes a new instance of the ProjectException class.

ProjectException ( string message ) : System

Initializes a new instance of the ProjectException class.

ProjectException ( string message, Exception innerException ) : System

Initializes a new instance of the ProjectException class.

Protected Methods

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

Initializes a new instance of the ProjectException class.

Method Details

ProjectException() public method

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

ProjectException() protected method

Initializes a new instance of the ProjectException class.
protected ProjectException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo /// The . ///
context System.Runtime.Serialization.StreamingContext /// The . ///
return System

ProjectException() public method

Initializes a new instance of the ProjectException class.
public ProjectException ( string message ) : System
message string /// The error message explaining what went wrong and how to fix it. ///
return System

ProjectException() public method

Initializes a new instance of the ProjectException class.
public ProjectException ( string message, Exception innerException ) : System
message string /// The error message explaining what went wrong and how to fix it. ///
innerException System.Exception /// The of the error. ///
return System