using System; namespace ICSharpCode.SharpZipLib.Tar { /// /// This exception is used to indicate that there is a problem /// with a TAR archive header. /// public class InvalidHeaderException : TarException { /// /// Initialise a new instance of the InvalidHeaderException class. /// public InvalidHeaderException() { } /// /// Initialises a new instance of the InvalidHeaderException class with a specified message. /// /// Message describing the exception cause. public InvalidHeaderException(string message) : base(message) { } /// /// Initialise a new instance of InvalidHeaderException /// /// Message describing the problem. /// The exception that is the cause of the current exception. public InvalidHeaderException(string message, Exception exception) : base(message, exception) { } } }