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