dev.galasa.framework.spi.DynamicStatusStoreMatchException Maven / Gradle / Ivy
/*
* Copyright contributors to the Galasa project
*
* SPDX-License-Identifier: EPL-2.0
*/
package dev.galasa.framework.spi;
public class DynamicStatusStoreMatchException extends DynamicStatusStoreException {
private static final long serialVersionUID = 1L;
public DynamicStatusStoreMatchException() {
}
public DynamicStatusStoreMatchException(String message) {
super(message);
}
public DynamicStatusStoreMatchException(Throwable cause) {
super(cause);
}
public DynamicStatusStoreMatchException(String message, Throwable cause) {
super(message, cause);
}
public DynamicStatusStoreMatchException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy