1 package org.smartcomps.twister.engine.exception;
2
3 /***
4 * Thrown when an xpath expression can't be avalutaed..
5 */
6 public class XPathEvaluationException extends EngineException {
7
8 public XPathEvaluationException(String s) {
9 super(s);
10 }
11
12 public XPathEvaluationException(String s, Throwable throwable) {
13 super(s, throwable);
14 }
15
16 public XPathEvaluationException(Throwable throwable) {
17 super(throwable);
18 }
19 }
This page was automatically generated by Maven