19 lines
283 B
C#
19 lines
283 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.OpenSsl;
|
|
|
|
[Serializable]
|
|
public class PemException : IOException
|
|
{
|
|
public PemException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public PemException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|