jodd.csselly.CSSellyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-stream-css Show documentation
Show all versions of xml-stream-css Show documentation
Stream Xml using StAX and Css matcher
The newest version!
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.csselly;
/**
* CSSelly exception.
*/
public class CSSellyException extends RuntimeException {
public CSSellyException(Throwable t) {
super(t);
}
public CSSellyException(String message) {
super(message);
}
public CSSellyException(String message, int state, int line, int column) {
super(message + " (state: " + state + (line != -1 ? " error at: " + line + ':' + column : "" + ')'));
}
}