aquality.tracking.integrations.core.AqualityUncheckedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-tracking-integrations-core Show documentation
Show all versions of aquality-tracking-integrations-core Show documentation
Aquality Tracking integration core for JVM-based test frameworks.
package aquality.tracking.integrations.core;
import java.io.IOException;
public class AqualityUncheckedException extends RuntimeException {
public AqualityUncheckedException(String message, IOException cause) {
super(message, cause);
}
public AqualityUncheckedException(String message, Exception cause) {
super(message, cause);
}
public AqualityUncheckedException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy