Mercurial > repos > IBBoard
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IO/InvalidFileException.cs Fri Dec 19 11:13:48 2008 +0000 @@ -0,0 +1,16 @@ +using System; + +namespace IBBoard.IO +{ + /// <summary> + /// Summary description for InvalidFileException. + /// </summary> + public class InvalidFileException : Exception + { + public InvalidFileException() : base() {} + + public InvalidFileException(string message) : base(message) {} + + public InvalidFileException(string message, Exception innerException) : base(message, innerException) {} + } +}