com.applitools.eyes.exceptions.NotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java5 Show documentation
Show all versions of eyes-common-java5 Show documentation
Common code for Applitools Eyes Java SDK projects
package com.applitools.eyes.exceptions;
import com.applitools.eyes.EyesException;
/**
* Encapsulates an error when a type or action is not supported.
*/
public class NotSupportedException extends EyesException {
public NotSupportedException(String message) {
super(message);
}
public NotSupportedException(String message, Throwable e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy