dev.galasa.zosmf.ZosmfException Maven / Gradle / Ivy
/*
* Licensed Materials - Property of IBM
*
* (c) Copyright IBM Corp. 2019.
*/
package dev.galasa.zosmf;
public class ZosmfException extends ZosmfManagerException {
private static final long serialVersionUID = 1L;
public ZosmfException() {
}
public ZosmfException(String message) {
super(message);
}
public ZosmfException(Throwable cause) {
super(cause);
}
public ZosmfException(String message, Throwable cause) {
super(message, cause);
}
public ZosmfException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy