C# Class IrcShark.Extensions.ExtensionException

Inheritance: System.Exception
Mostra file Open project: hapm/IrcShark

Public Methods

Method Description
ExtensionException ( ExtensionInfo info ) : System

Initializes a new instance of the ExtensionException class for the given extension.

ExtensionException ( ExtensionInfo info, string msg ) : System

Initializes a new instance of the ExtensionException class for the given extension with the given message.

Method Details

ExtensionException() public method

Initializes a new instance of the ExtensionException class for the given extension.
public ExtensionException ( ExtensionInfo info ) : System
info ExtensionInfo /// The for the extension causing the exception. ///
return System

ExtensionException() public method

Initializes a new instance of the ExtensionException class for the given extension with the given message.
public ExtensionException ( ExtensionInfo info, string msg ) : System
info ExtensionInfo /// The for the extension causing the exception. ///
msg string /// The message of the exception. ///
return System