|
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$
|
|---|
| 2 | using System;
|
|---|
| 3 | using System.IO;
|
|---|
| 4 | using System.Net;
|
|---|
| 5 |
|
|---|
| 6 | using Circuit.Net.Irc;
|
|---|
| 7 |
|
|---|
| 8 | namespace 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 | }
|
|---|