blob: 31b06d6dd3f5e4528beec6050d925678d3497a33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)
{
}
}
}
|