blob: 5a4944dd8e01168c72dda776d829f8f211ed34c5 (
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)
[Serializable]
#endif
public class PkixCertPathBuilderException : GeneralSecurityException
{
public PkixCertPathBuilderException() : base() { }
public PkixCertPathBuilderException(string message) : base(message) { }
public PkixCertPathBuilderException(string message, Exception exception) : base(message, exception) { }
}
}
|