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

org.xpathqs.driver.exceptions.XPathQsException.kt Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package org.xpathqs.driver.exceptions

import org.xpathqs.driver.actions.IAction
import org.xpathqs.driver.executor.IExecutor

open class XPathQsException(
    msg: String
) : Exception(msg) {
    class ActionNotFound(
        action: IAction,
        executor: IExecutor
    ) : XPathQsException(
        msg = "There is no handler for '${action.name}' in the ${executor::class.java.simpleName}"
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy