using System; using System.Collections.Generic; using System.Text; namespace AMWD.Common.Packing.Tar.Utils { public class TarException : Exception { public TarException(string message) : base(message) { } } }