| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- using System;
 
- namespace ICSharpCode.SharpZipLib.Tar
 
- {
 
- 	/// <summary>
 
- 	/// TarException represents exceptions specific to Tar classes and code.
 
- 	/// </summary>
 
- 	public class TarException : SharpZipBaseException
 
- 	{
 
- 		/// <summary>
 
- 		/// Initialise a new instance of <see cref="TarException" />.
 
- 		/// </summary>
 
- 		public TarException()
 
- 		{
 
- 		}
 
- 		/// <summary>
 
- 		/// Initialise a new instance of <see cref="TarException" /> with its message string.
 
- 		/// </summary>
 
- 		/// <param name="message">A <see cref="string"/> that describes the error.</param>
 
- 		public TarException(string message)
 
- 			: base(message)
 
- 		{
 
- 		}
 
- 		/// <summary>
 
- 		/// Initialise a new instance of <see cref="TarException" />.
 
- 		/// </summary>
 
- 		/// <param name="message">A <see cref="string"/> that describes the error.</param>
 
- 		/// <param name="innerException">The <see cref="Exception"/> that caused this exception.</param>
 
- 		public TarException(string message, Exception innerException)
 
- 			: base(message, innerException)
 
- 		{
 
- 		}
 
- 	}
 
- }
 
 
  |