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