Mercurial > repos > IBBoard
comparison IO/InvalidFileException.cs @ 0:961030992bd2
Initial commit of IBBoard libraries
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 19 Dec 2008 11:13:48 +0000 |
parents | |
children | 0352fa33ee8f |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:961030992bd2 |
---|---|
1 using System; | |
2 | |
3 namespace IBBoard.IO | |
4 { | |
5 /// <summary> | |
6 /// Summary description for InvalidFileException. | |
7 /// </summary> | |
8 public class InvalidFileException : Exception | |
9 { | |
10 public InvalidFileException() : base() {} | |
11 | |
12 public InvalidFileException(string message) : base(message) {} | |
13 | |
14 public InvalidFileException(string message, Exception innerException) : base(message, innerException) {} | |
15 } | |
16 } |