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