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

org.fluentlenium.core.performance.UnknownPerformanceTimingImplementationException Maven / Gradle / Ivy

package org.fluentlenium.core.performance;

/**
 * Exception for when the browser specific PerformanceTiming API implementation is not (yet) supported by FluentLenium.
 *
 * @see PerformanceTimingMetricsFactory
 */
class UnknownPerformanceTimingImplementationException extends RuntimeException {

    UnknownPerformanceTimingImplementationException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy