List of usage examples for org.bouncycastle.util.io.pem PemGenerationException PemGenerationException
public PemGenerationException(String message, Throwable cause)
From source file:org.jruby.ext.openssl.impl.pem.MiscPEMGenerator.java
License:Open Source License
public PemObject generate() throws PemGenerationException { try {// w ww. j a va 2 s . c om return createPemObject(obj); } catch (IOException e) { throw new PemGenerationException("encoding exception: " + e.getMessage(), e); } }