summary refs log tree commit diff
path: root/crypto/src/pkix/PkixNameConstraintValidatorException.cs
blob: 432d7bd6b6434c0c61cb35246d1ac60bec23a12f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace Org.BouncyCastle.Pkix
{
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT)
    [Serializable]
#endif
    public class PkixNameConstraintValidatorException
        : Exception
    {
        public PkixNameConstraintValidatorException(String msg)
            : base(msg)
        {
        }
    }
}