#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar" // Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com. #endregion using System; namespace FileHelpers { /// Base class for all the library Exceptions. public class FileHelpersException : Exception { /// Basic constructor of the exception. /// Message of the exception. public FileHelpersException(string message) : base(message) { } /// Basic constructor of the exception. /// Message of the exception. /// The inner Exception. public FileHelpersException(string message, Exception innerEx) : base(message, innerEx) { } } }