blob: eab32f9167ae6fb616a98b8ef318249ca1d48be6 (
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
29
30
|
using System;
using System.Runtime.Serialization;
namespace Org.BouncyCastle.Cms
{
[Serializable]
public class CmsException
: Exception
{
public CmsException()
: base()
{
}
public CmsException(string message)
: base(message)
{
}
public CmsException(string message, Exception innerException)
: base(message, innerException)
{
}
protected CmsException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
|