Package com.avoka.tm.util
Class RedirectException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.avoka.fc.core.servlet.RedirectException
-
- com.avoka.tm.util.RedirectException
-
- All Implemented Interfaces:
Serializable
public class RedirectException extends com.avoka.fc.core.servlet.RedirectException
Provides an redirect exception which can be used to redirect the user to another location.
By convention if the redirect target URL is prefixed with '/' then the web applications context path will be prepended to the target URL. For example:
'/form-expired.htm' -> 'http://www.mycorp.com/forms/form-expired.htm'
Note this URL context path pre-pending should be done by the calling code and will not be done by this class.
- Since:
- 5.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RedirectException(String target)
Create a Redirect exception with the given target URL.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
RedirectException
public RedirectException(String target)
Create a Redirect exception with the given target URL.By convention if the redirect target URL is prefixed with '/' then the web applications context path will be prepended to the target URL. For example:
'/form-expired.htm' -> 'http://www.mycorp.com/forms/form-expired.htm'
Note this URL context path pre-pending should be done by the calling code and will not be done by this class.
- Parameters:
target
- the redirect target URL
-
-