Searched refs:SSLProtocolException (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/javax/net/ssl/
H A DSSLProtocolException.java24 public class SSLProtocolException extends SSLException { class in inherits:SSLException
29 * Creates a new {@code SSLProtocolException} with the specified message.
34 public SSLProtocolException(String reason) { method in class:SSLProtocolException
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DSSLProtocolExceptionTest.java18 import javax.net.ssl.SSLProtocolException;
31 * Test for <code>SSLProtocolException(String)</code> constructor Assertion:
32 * constructs SSLProtocolException with detail message msg. Parameter
36 SSLProtocolException sslE;
38 sslE = new SSLProtocolException(msgs[i]);
45 * Test for <code>SSLProtocolException(String)</code> constructor Assertion:
46 * constructs SSLProtocolException with detail message msg. Parameter
51 SSLProtocolException sslE = new SSLProtocolException(msg);
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketTest.java61 import javax.net.ssl.SSLProtocolException;
676 } catch (SSLProtocolException expected) {
1854 assertEquals(SSLProtocolException.class, cause.getClass());
1869 assertEquals(SSLProtocolException.class, cause.getClass());

Completed in 1911 milliseconds