using System; #region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar" // Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com. #endregion namespace FileHelpers { /// Indicates the wrong usage of the library. public class BadUsageException : FileHelpersException { /// Creates an instance of an BadUsageException. /// The exception Message protected internal BadUsageException(string message) : base(message) { } // /// Creates an instance of an BadUsageException. // /// The exception Message // /// The inner exception. // protected internal BadUsageException(string message, Exception innerEx) : base(message, innerEx) // { // } } }