22 lines
339 B
C#
22 lines
339 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Asn1;
|
|
|
|
[Serializable]
|
|
public class Asn1ParsingException : InvalidOperationException
|
|
{
|
|
public Asn1ParsingException()
|
|
{
|
|
}
|
|
|
|
public Asn1ParsingException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public Asn1ParsingException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|