13 lines
207 B
C#
13 lines
207 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Pkix;
|
|
|
|
[Serializable]
|
|
public class PkixNameConstraintValidatorException : Exception
|
|
{
|
|
public PkixNameConstraintValidatorException(string msg)
|
|
: base(msg)
|
|
{
|
|
}
|
|
}
|