using System; using System.Runtime.Serialization; namespace ICSharpCode.SharpZipLib.Core { /// /// InvalidNameException is thrown for invalid names such as directory traversal paths and names with invalid characters /// [Serializable] public class InvalidNameException : SharpZipBaseException { /// /// Initializes a new instance of the InvalidNameException class with a default error message. /// public InvalidNameException() : base("An invalid name was specified") { } /// /// Initializes a new instance of the InvalidNameException class with a specified error message. /// /// A message describing the exception. public InvalidNameException(string message) : base(message) { } /// /// Initializes a new instance of the InvalidNameException class with a specified /// error message and a reference to the inner exception that is the cause of this exception. /// /// A message describing the exception. /// The inner exception public InvalidNameException(string message, Exception innerException) : base(message, innerException) { } /// /// Initializes a new instance of the InvalidNameException class with serialized data. /// /// /// The System.Runtime.Serialization.SerializationInfo that holds the serialized /// object data about the exception being thrown. /// /// /// The System.Runtime.Serialization.StreamingContext that contains contextual information /// about the source or destination. /// protected InvalidNameException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }