14 lines
235 B
C#
14 lines
235 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|