// NAnt - A .NET build tool // Copyright (C) 2001 Gerry Shaw // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // Gert Driesen (gert.driesen@ardatis.com) using System; using System.Runtime.Serialization; namespace NAnt.Core.Util { /// /// The exception that is thrown when one of the command-line arguments provided /// is not valid. /// [Serializable()] public sealed class CommandLineArgumentException : ArgumentException { #region Public Instance Constructors /// /// Initializes a new instance of the class. /// public CommandLineArgumentException() : base() { } /// /// Initializes a new instance of the class /// with a descriptive message. /// /// A descriptive message to include with the exception. public CommandLineArgumentException(string message) : base(message) { } /// /// Initializes a new instance of the class /// with a descriptive message and an inner exception. /// /// A descriptive message to include with the exception. /// A nested exception that is the cause of the current exception. public CommandLineArgumentException(string message, Exception innerException) : base(message, innerException) { } #endregion Public Instance Constructors #region Private Instance Constructors /// /// Initializes a new instance of the class /// with serialized data. /// /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. private CommandLineArgumentException(SerializationInfo info, StreamingContext context) : base(info, context) { } #endregion Private Instance Constructors } }