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

br.com.caelum.vraptor.interceptor.ApplicationLogicException Maven / Gradle / Ivy

There is a newer version: 4.3.0-beta-3
Show newest version
package br.com.caelum.vraptor.interceptor;

import br.com.caelum.vraptor.InterceptionException;


/**
 * When a controller or JSP throws an exception, we use this one to wrap it, so
 * we can unwrap after it leaves the interceptor stack
 *
 */
public class ApplicationLogicException extends InterceptionException {

	private static final long serialVersionUID = -8388907262726903974L;

	public ApplicationLogicException(String msg) {
		super(msg);
	}

	public ApplicationLogicException(String msg, Throwable e) {
		super(msg, e);
	}

	public ApplicationLogicException(Throwable e) {
		super(e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy