blob: d59404f7a0a106e49d04f9f563eec40ecb11315d (
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.Bcpg
{
[Serializable]
public class UnsupportedPacketVersionException
: Exception
{
public UnsupportedPacketVersionException()
: base()
{
}
public UnsupportedPacketVersionException(string message)
: base(message)
{
}
public UnsupportedPacketVersionException(string message, Exception innerException)
: base(message, innerException)
{
}
protected UnsupportedPacketVersionException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
|