com.sap.it.commons.jmx.JMXRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-core Show documentation
Show all versions of odata-core Show documentation
SAP Cloud Platform SDK for service development
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