BizHawk/BizHawk.Client.Common/SharpCompress/Common/PasswordProtectedException.cs

17 lines
367 B
C#

using System;
namespace SharpCompress.Common
{
public class PasswordProtectedException : ExtractionException
{
public PasswordProtectedException(string message)
: base(message)
{
}
public PasswordProtectedException(string message, Exception inner)
: base(message, inner)
{
}
}
}