diff options
Diffstat (limited to 'crypto/src/asn1/crmf/CrmfException.cs')
-rw-r--r-- | crypto/src/asn1/crmf/CrmfException.cs | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/crypto/src/asn1/crmf/CrmfException.cs b/crypto/src/asn1/crmf/CrmfException.cs deleted file mode 100644 index 7043ccd73..000000000 --- a/crypto/src/asn1/crmf/CrmfException.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; -using System.Text; - -namespace Org.BouncyCastle.Asn1.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) - { - } - } -} |