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 pathPkcsIOException.cs
More file actions
38 lines (34 loc) · 865 Bytes
/
PkcsIOException.cs
File metadata and controls
38 lines (34 loc) · 865 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
38
using System;
using System.IO;
using System.Runtime.Serialization;
namespace Org.BouncyCastle.Pkcs
{
/// <summary>Base exception for parsing related issues in the PKCS namespace.</summary>
[Serializable]
public class PkcsIOException
: IOException
{
public PkcsIOException()
: base()
{
}
public PkcsIOException(string message)
: base(message)
{
}
public PkcsIOException(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 PkcsIOException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}