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

me.saro.selenium.model.SeleniumChromeException.kt Maven / Gradle / Ivy

There is a newer version: 4.26.0.0
Show newest version
package me.saro.selenium.model

class SeleniumChromeException(
    override val message: String,
    override val cause: Throwable? = null
): RuntimeException() {
    constructor(cause: Throwable): this(cause.message?:"", cause)
    constructor(message: String): this(message, null)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy