All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.saumya.mojo.ruby.gems.GemException Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package de.saumya.mojo.ruby.gems;

public class GemException extends Exception {
    private static final long serialVersionUID = 740727357226540997L;

    public GemException(final Exception e) {
        super(e);
    }

    public GemException(final String msg, final Exception e) {
        super(msg, e);
    }

    public GemException(final String msg) {
        super(msg);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy