12345678910111213141516171819202122232425 |
- using System;
- namespace SharpCompress.Crypto
- {
- public class CryptoException
- : Exception
- {
- public CryptoException()
- {
- }
- public CryptoException(
- string message)
- : base(message)
- {
- }
- public CryptoException(
- string message,
- Exception exception)
- : base(message, exception)
- {
- }
- }
- }
|