org.catools.zapi.exception.CZApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zapi Show documentation
Show all versions of zapi Show documentation
The Zephyr client to be used in other CATools projects.
package org.catools.zapi.exception;
import org.catools.common.exception.CRuntimeException;
public class CZApiException extends CRuntimeException {
public CZApiException(String message, Throwable t) {
super(message, t);
}
}