| File was renamed from opends/src/ads/org/opends/admin/ads/util/OpendsCertificationException.java |
| | |
| | | * this exception is thrown. This allows to get the certificate chain |
| | | * which is unknown. |
| | | */ |
| | | public class OpendsCertificationException extends CertificateException |
| | | public class OpendsCertificateException extends CertificateException |
| | | { |
| | | |
| | | /** |
| | |
| | | * @param chain the certificate chain which is unknown and has caused |
| | | * the SSL handcheck failure. |
| | | */ |
| | | public OpendsCertificationException(X509Certificate[] chain) |
| | | public OpendsCertificateException(X509Certificate[] chain) |
| | | { |
| | | super(); |
| | | this.chain = chain; |
| | |
| | | * @param chain the certificate chain which is unknown and has caused |
| | | * the SSL handcheck failure. |
| | | */ |
| | | public OpendsCertificationException(String msg, X509Certificate[] chain) |
| | | public OpendsCertificateException(String msg, X509Certificate[] chain) |
| | | { |
| | | super(msg); |
| | | this.chain = chain; |