Files
linux-packaging-mono/mcs/class/System.IO.Compression/SharpCompress/Common/ArchiveException.cs

12 lines
208 B
C#
Raw Normal View History

using System;
namespace SharpCompress.Common
{
internal class ArchiveException : Exception
{
public ArchiveException(string message)
: base(message)
{
}
}
}