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