mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 21:23:38 +00:00
17 lines
383 B
C#
17 lines
383 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)
|
|
{
|
|
}
|
|
}
|
|
} |