C# Class IrcShark.Chatting.Irc.InvalidLineFormatException

Inheritance: System.Exception
Mostrar archivo Open project: hapm/IrcShark

Public Methods

Method Description
InvalidLineFormatException ( string line ) : System

Initializes a new instance of the InvalidLineFormatException class.

InvalidLineFormatException ( string msg, string line ) : System

Initializes a new instance of the InvalidLineFormatException class with the given message.

Method Details

InvalidLineFormatException() public method

Initializes a new instance of the InvalidLineFormatException class.
public InvalidLineFormatException ( string line ) : System
line string /// The raw string, what couldn't be parsed as a raw irc line. ///
return System

InvalidLineFormatException() public method

Initializes a new instance of the InvalidLineFormatException class with the given message.
public InvalidLineFormatException ( string msg, string line ) : System
msg string /// The message of this exception. ///
line string /// The part of or a complete raw string, what couldn't be parsed as a raw irc line. ///
return System