org.xpathqs.driver.exceptions.XPathQsException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpathqs-driver Show documentation
Show all versions of xpathqs-driver Show documentation
Framework for the interaction with drivers for the xpathqs-core
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