diff options
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) + { + } + } +} |