mirrored from https://www.bouncycastle.org/repositories/bc-csharp
-
Notifications
You must be signed in to change notification settings - Fork 597
Expand file tree
/
Copy pathPEMException.cs
More file actions
37 lines (33 loc) · 764 Bytes
/
PEMException.cs
File metadata and controls
37 lines (33 loc) · 764 Bytes
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
32
33
34
35
36
37
using System;
using System.IO;
using System.Runtime.Serialization;
namespace Org.BouncyCastle.OpenSsl
{
[Serializable]
public class PemException
: IOException
{
public PemException()
: base()
{
}
public PemException(string message)
: base(message)
{
}
public PemException(string message, Exception innerException)
: base(message, innerException)
{
}
#if NET8_0_OR_GREATER
[System.Obsolete(
"This API supports obsolete formatter-based serialization. It should not be called or extended by application code.",
DiagnosticId = "SYSLIB0051", UrlFormat = "https://aka.ms/dotnet-warnings/{0}"
)]
#endif
protected PemException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}