blob: 0f10179ddf34125f57718988dd5d6ae63efa5524 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using Org.BouncyCastle.Security;
namespace Org.BouncyCastle.Pkix
{
/// <summary>
/// Summary description for PkixCertPathBuilderException.
/// </summary>
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE)
[Serializable]
#endif
public class PkixCertPathBuilderException : GeneralSecurityException
{
public PkixCertPathBuilderException() : base() { }
public PkixCertPathBuilderException(string message) : base(message) { }
public PkixCertPathBuilderException(string message, Exception exception) : base(message, exception) { }
}
}
|