blob: ba296882c6004a6365c7f9b6fccf2a2273435394 (
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
31
|
using System;
using System.Runtime.Serialization;
namespace Org.BouncyCastle.Pkcs
{
/// <summary>Base exception for PKCS related issues.</summary>
[Serializable]
public class PkcsException
: Exception
{
public PkcsException()
: base()
{
}
public PkcsException(string message)
: base(message)
{
}
public PkcsException(string message, Exception innerException)
: base(message, innerException)
{
}
protected PkcsException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
|