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

io.perfana.client.exception.PerfanaClientException Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package io.perfana.client.exception;

public class PerfanaClientException extends Exception {
    
    public PerfanaClientException(final String message) {
        super(message);
    }

    public PerfanaClientException(final String message, final Exception e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy