List of usage examples for java.security KeyException printStackTrace
public void printStackTrace()
From source file:com.trustly.api.SignedAPI.java
public void init(String privateKeyPath, String keyPassword, String username, String password, boolean testEnvironment) { setEnvironment(testEnvironment);//from w w w . jav a2 s. c o m try { signatureHandler.init(privateKeyPath, keyPassword, username, password, testEnvironment); } catch (KeyException e) { e.printStackTrace(); } }