summary refs log tree commit diff
path: root/Crypto/src/cms/CMSAttributeTableGenerationException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Crypto/src/cms/CMSAttributeTableGenerationException.cs')
-rw-r--r--Crypto/src/cms/CMSAttributeTableGenerationException.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Crypto/src/cms/CMSAttributeTableGenerationException.cs b/Crypto/src/cms/CMSAttributeTableGenerationException.cs
new file mode 100644

index 000000000..2bc8ce5d1 --- /dev/null +++ b/Crypto/src/cms/CMSAttributeTableGenerationException.cs
@@ -0,0 +1,25 @@ +using System; + +namespace Org.BouncyCastle.Cms +{ + public class CmsAttributeTableGenerationException + : CmsException + { + public CmsAttributeTableGenerationException() + { + } + + public CmsAttributeTableGenerationException( + string name) + : base(name) + { + } + + public CmsAttributeTableGenerationException( + string name, + Exception e) + : base(name, e) + { + } + } +}