blob: 692be280400695d9cc7e303e69b84b0e299db5c8 (
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 !PORTABLE
[Serializable]
#endif
public class CmsAttributeTableGenerationException
: CmsException
{
public CmsAttributeTableGenerationException()
{
}
public CmsAttributeTableGenerationException(
string name)
: base(name)
{
}
public CmsAttributeTableGenerationException(
string name,
Exception e)
: base(name, e)
{
}
}
}
|