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

jodd.lagarto.dom.LagartoDOMException Maven / Gradle / Ivy

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy