Files
sharpcompress/SharpCompress/Common/PasswordProtectedException.cs

17 lines
383 B
C#
Raw Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
public class PasswordProtectedException : ExtractionException
{
public PasswordProtectedException(string message)
: base(message)
{
}
2013-04-28 12:32:55 +01:00
2013-04-07 10:58:58 +01:00
public PasswordProtectedException(string message, Exception inner)
: base(message, inner)
{
}
}
2013-04-28 12:32:55 +01:00
}