All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.exceptions.NotSupportedException Maven / Gradle / Ivy

There is a newer version: 5.66.0
Show newest version
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