diff options
author | David Hook <dgh@bouncycastle.org> | 2019-01-14 18:10:49 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2019-01-14 18:10:49 +1100 |
commit | a723aca1e07f57af70d7596a4fe3961045cdb0d9 (patch) | |
tree | 9c2c3b608e823c2705855a63069d3d8326fecaf5 /crypto/src/crmf/CrmfException.cs | |
parent | Nist algs and ProtectedMessageTests (diff) | |
download | BouncyCastle.NET-ed25519-a723aca1e07f57af70d7596a4fe3961045cdb0d9.tar.xz |
packaging fix
Diffstat (limited to 'crypto/src/crmf/CrmfException.cs')
-rw-r--r-- | crypto/src/crmf/CrmfException.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/crypto/src/crmf/CrmfException.cs b/crypto/src/crmf/CrmfException.cs new file mode 100644 index 000000000..c80f480b7 --- /dev/null +++ b/crypto/src/crmf/CrmfException.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text; + +namespace Org.BouncyCastle.Crmf +{ + public class CrmfException : Exception + { + public CrmfException() + { + } + + public CrmfException(string message) : base(message) + { + } + + public CrmfException(string message, Exception innerException) : base(message, innerException) + { + } + + protected CrmfException(SerializationInfo info, StreamingContext context) : base(info, context) + { + } + } +} |