using System; namespace ICSharpCode.SharpZipLib.Lzw { /// /// LzwException represents exceptions specific to LZW classes and code. /// public class LzwException : SharpZipBaseException { /// /// Initialise a new instance of . /// public LzwException() { } /// /// Initialise a new instance of with its message string. /// /// A that describes the error. public LzwException(string message) : base(message) { } /// /// Initialise a new instance of . /// /// A that describes the error. /// The that caused this exception. public LzwException(string message, Exception innerException) : base(message, innerException) { } } }