Searched refs:CertificateException (Results 1 - 25 of 141) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/javax/security/cert/
H A DCertificateException.java42 public class CertificateException extends Exception { class in inherits:Exception
48 public CertificateException() { method in class:CertificateException
59 public CertificateException(String msg) { method in class:CertificateException
H A DCertificateEncodingException.java42 public class CertificateEncodingException extends CertificateException {
H A DCertificateExpiredException.java44 public class CertificateExpiredException extends CertificateException {
H A DCertificateNotYetValidException.java44 public class CertificateNotYetValidException extends CertificateException {
H A DCertificateParsingException.java43 public class CertificateParsingException extends CertificateException {
H A DX509Certificate.java174 * @exception CertificateException if a class initialization
178 throws CertificateException {
200 * @exception CertificateException if a class initialization
204 throws CertificateException {
209 throws CertificateException {
228 throw new CertificateException("Unsupported argument type");
239 throw new CertificateException("Could not find class: " + e);
241 throw new CertificateException("Could not access class: " + e);
243 throw new CertificateException("Problems instantiating: " + e);
245 throw new CertificateException("InvocationTargetExceptio
[all...]
H A DCertificate.java91 } catch (CertificateException e) {
110 } catch (CertificateException e) {
138 * @exception CertificateException on encoding errors.
141 throws CertificateException, NoSuchAlgorithmException,
157 * @exception CertificateException on encoding errors.
160 throws CertificateException, NoSuchAlgorithmException,
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificateException.java36 public class CertificateException extends GeneralSecurityException { class in inherits:GeneralSecurityException
44 public CertificateException() { method in class:CertificateException
55 public CertificateException(String msg) { method in class:CertificateException
60 * Creates a <code>CertificateException</code> with the specified
70 public CertificateException(String message, Throwable cause) { method in class:CertificateException
75 * Creates a <code>CertificateException</code> with the specified cause
85 public CertificateException(Throwable cause) { method in class:CertificateException
H A DCertificateExpiredException.java36 public class CertificateExpiredException extends CertificateException {
H A DCertificateNotYetValidException.java36 public class CertificateNotYetValidException extends CertificateException {
H A DCertificateFactorySpi.java95 * <code>CertificateException</code> is thrown.
102 * @exception CertificateException on parsing errors.
105 throws CertificateException;
120 * @exception CertificateException if an exception occurs while decoding
125 throws CertificateException
144 * @exception CertificateException if an exception occurs while decoding or
150 String encoding) throws CertificateException
171 * @exception CertificateException if an exception occurs
177 throws CertificateException
242 * @exception CertificateException o
[all...]
H A DCertificateFactory.java174 * @exception CertificateException if no Provider supports a
181 throws CertificateException {
188 throw new CertificateException(type + " not found", e);
214 * @exception CertificateException if a CertificateFactorySpi
227 String provider) throws CertificateException,
235 throw new CertificateException(type + " not found", e);
257 * @exception CertificateException if a CertificateFactorySpi
269 Provider provider) throws CertificateException {
276 throw new CertificateException(type + " not found", e);
327 * <code>CertificateException</cod
[all...]
H A DCertificate.java113 } catch (CertificateException e) {
132 } catch (CertificateException e) {
161 * @exception CertificateException on encoding errors.
164 throws CertificateException, NoSuchAlgorithmException,
182 * @exception CertificateException on encoding errors.
185 throws CertificateException, NoSuchAlgorithmException,
244 } catch (CertificateException e) {
266 } catch (CertificateException e) {
H A DCertificateEncodingException.java34 public class CertificateEncodingException extends CertificateException {
H A DCertificateParsingException.java35 public class CertificateParsingException extends CertificateException {
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DX509ExtendedTrustManager.java32 import java.security.cert.CertificateException;
88 * @throws CertificateException if the certificate chain is not trusted
97 String authType, Socket socket) throws CertificateException;
136 * @throws CertificateException if the certificate chain is not trusted
145 String authType, Socket socket) throws CertificateException;
177 * @throws CertificateException if the certificate chain is not trusted
186 String authType, SSLEngine engine) throws CertificateException;
223 * @throws CertificateException if the certificate chain is not trusted
232 String authType, SSLEngine engine) throws CertificateException;
H A DX509TrustManager.java55 * @throws CertificateException if the certificate chain is not trusted
59 throws CertificateException;
81 * @throws CertificateException if the certificate chain is not trusted
85 throws CertificateException;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertAttrSet.java30 import java.security.cert.CertificateException;
46 * @see CertificateException
63 * @exception CertificateException on encoding or validity errors.
67 throws CertificateException, IOException;
75 * @exception CertificateException on attribute handling errors.
79 throws CertificateException, IOException;
86 * @exception CertificateException on attribute handling errors.
90 throws CertificateException, IOException;
97 * @exception CertificateException on attribute handling errors.
101 throws CertificateException, IOExceptio
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/ssl/
H A DX509ExtendedTrustManager.java31 import java.security.cert.CertificateException;
87 * @throws CertificateException if the certificate chain is not trusted
92 throws CertificateException;
116 * @throws CertificateException if the certificate chain is not trusted
121 throws CertificateException;
/openjdk7/jdk/src/share/classes/com/sun/jarsigner/
H A DContentSigner.java30 import java.security.cert.CertificateException;
57 * @throws CertificateException The exception is thrown if an error occurs
69 throws NoSuchAlgorithmException, CertificateException, IOException;
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DState.java29 import java.security.cert.CertificateException;
51 throws CertificateException, IOException, CertPathValidatorException;
/openjdk7/jdk/test/java/security/cert/CertificateFactory/openssl/
H A DBadFooter.java27 * CertificateException for malformed certificate
32 import java.security.cert.CertificateException;
75 } catch (CertificateException ce) {
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DMyCertificateFactory.java35 import java.security.cert.CertificateException;
51 throws CertificateException {
61 throws CertificateException {
67 throws CertificateException {
73 throws CertificateException {
83 throws CertificateException {
/openjdk7/jdk/src/share/classes/com/sun/security/cert/internal/x509/
H A DX509V1CertImpl.java56 throws java.security.cert.CertificateException
76 * @exception CertificateException on parsing errors.
79 throws CertificateException {
86 } catch (java.security.cert.CertificateException e) {
87 throw new CertificateException(e.getMessage());
95 * @exception CertificateException on parsing errors.
98 throws CertificateException {
102 } catch (java.security.cert.CertificateException e) {
103 throw new CertificateException(e.getMessage());
130 throws CertificateException, NoSuchAlgorithmExceptio
[all...]
/openjdk7/jdk/test/sun/security/provider/certpath/X509CertPath/
H A DIllegalCertiticates.java30 import java.security.cert.CertificateException;
47 throw new Exception("No expected CertificateException thrown");
48 } catch (CertificateException ce) {
51 throw new Exception("No expected CertificateException thrown", e);

Completed in 279 milliseconds

123456