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

17 lines
369 B
C#
Raw Normal View History

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