![JAR search and dependency download from the Maven repository](/logo.png)
org.vraptor.component.LogicNotFoundException Maven / Gradle / Ivy
package org.vraptor.component;
import org.vraptor.VRaptorException;
/**
* Logic not found or invalid.
*
* @author Guilherme Silveira
*/
public class LogicNotFoundException extends VRaptorException {
private static final long serialVersionUID = 8107019768951502159L;
public LogicNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public LogicNotFoundException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy