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

com.sap.it.commons.jmx.JMXRuntimeException Maven / Gradle / Ivy

The newest version!
package com.sap.it.commons.jmx;

public class JMXRuntimeException extends RuntimeException {

    private static final long serialVersionUID = -7426912563636844819L;

    public JMXRuntimeException() {
    }

    public JMXRuntimeException(String message) {
        super(message);
    }

    public JMXRuntimeException(Throwable cause) {
        super(cause);
    }

    public JMXRuntimeException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy