List of usage examples for javax.net.ssl SSLException getStackTrace
public StackTraceElement[] getStackTrace()
From source file:org.wso2.esb.integration.common.utils.clients.Http2Client.java
public void createSSLContext(TrustManagerFactory trustManager) { try {/*from ww w .ja v a 2 s .c om*/ sslContext = generateSSLContext(trustManager); SSL = true; } catch (SSLException e) { log.error(e.getStackTrace()); } }