root/lang/csharp/Criw-0/IRCException.cs

Revision 1736, 0.5 kB (checked in by mayuki, 14 months ago)

lang/csharp: WZERO3などで動くIRCクライアントのサンプル実装 Criw-0 を追加。

  • Property svn:keywords set to Id
Line 
1// $Id$
2using System;
3using System.IO;
4using System.Net;
5
6using Circuit.Net.Irc;
7
8namespace Circuit.Net.Irc
9{
10        public class IRCException : ApplicationException
11        {
12                public IRCException(String message) : base(message) {}
13        }
14        public class IRCNotConnectedException : IRCException
15        {
16                public IRCNotConnectedException(String message) : base(message) {}
17        }
18        public class IRCInvalidMessageException : IRCException
19        {
20                public IRCInvalidMessageException(String message)
21                        : base("���b�Z�[�W�̌`�����s���ł�\n���b�Z�[�W: " + message) {}
22        }
23}
Note: See TracBrowser for help on using the browser.