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