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