Example usage for org.bouncycastle.util.io.pem PemGenerationException PemGenerationException

List of usage examples for org.bouncycastle.util.io.pem PemGenerationException PemGenerationException

Introduction

In this page you can find the example usage for org.bouncycastle.util.io.pem PemGenerationException PemGenerationException.

Prototype

public PemGenerationException(String message, Throwable cause) 

Source Link

Usage

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);
    }
}