jodd.lagarto.dom.LagartoDOMException 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.lagarto.dom;
/**
* Lagarto DOM exception
*/
public class LagartoDOMException extends RuntimeException {
public LagartoDOMException(Throwable t) {
super(t);
}
public LagartoDOMException(String message) {
super(message);
}
}