BizHawk/BizHawk.Client.Common/SharpCompress/Common/ArchiveException.cs

12 lines
206 B
C#

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