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

org.fluentlenium.core.events.EventAnnotationsException Maven / Gradle / Ivy

package org.fluentlenium.core.events;

/**
 * Thrown when something wrong occurs with event annotations.
 */
public class EventAnnotationsException extends RuntimeException {
    /**
     * Creates a new event annotations exception.
     *
     * @param message exception message
     * @param cause   exception cause
     */
    public EventAnnotationsException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy