com.saucelabs.visual.exception.VisualApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java library to interact with Sauce Visual
package com.saucelabs.visual.exception;
public class VisualApiException extends RuntimeException {
public VisualApiException(String msg) {
super(msg);
}
public VisualApiException(String msg, Exception e) {
super(msg, e);
}
}