jodd.vtor.VtorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-vtor Show documentation
Show all versions of jodd-vtor Show documentation
Jodd VTor is focused validation framework for any Java object.
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.vtor;
import jodd.exception.UncheckedException;
/**
* Vtor exception.
*/
public class VtorException extends UncheckedException {
public VtorException(Throwable t) {
super(t);
}
public VtorException(String message) {
super(message);
}
public VtorException(String message, Throwable t) {
super(message, t);
}
}