Home | History | Annotate | Download | only in cert

Lines Matching refs:CertificateExpiredException

27 import java.security.cert.CertificateExpiredException;
44 * Test for <code>CertificateExpiredException()</code> constructor
45 * Assertion: constructs CertificateExpiredException with no detail message
48 CertificateExpiredException tE = new CertificateExpiredException();
54 * Test for <code>CertificateExpiredException(String)</code> constructor
55 * Assertion: constructs CertificateExpiredException with detail message
59 CertificateExpiredException tE;
61 tE = new CertificateExpiredException(msgs[i]);
69 * Test for <code>CertificateExpiredException(String)</code> constructor
70 * Assertion: constructs CertificateExpiredException when <code>msg</code>
75 CertificateExpiredException tE = new CertificateExpiredException(msg);