diff options
Diffstat (limited to 'crypto/src/cms/CMSAttributeTableGenerationException.cs')
-rw-r--r-- | crypto/src/cms/CMSAttributeTableGenerationException.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/crypto/src/cms/CMSAttributeTableGenerationException.cs b/crypto/src/cms/CMSAttributeTableGenerationException.cs new file mode 100644 index 000000000..31b06d6dd --- /dev/null +++ b/crypto/src/cms/CMSAttributeTableGenerationException.cs @@ -0,0 +1,28 @@ +using System; + +namespace Org.BouncyCastle.Cms +{ +#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT) + [Serializable] +#endif + public class CmsAttributeTableGenerationException + : CmsException + { + public CmsAttributeTableGenerationException() + { + } + + public CmsAttributeTableGenerationException( + string name) + : base(name) + { + } + + public CmsAttributeTableGenerationException( + string name, + Exception e) + : base(name, e) + { + } + } +} |