Package helma.framework
Class RedirectException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- helma.framework.RedirectException
-
- All Implemented Interfaces:
java.io.Serializable
public class RedirectException extends java.lang.Error
RedirectException is thrown internally when a response is redirected to a new URL. Although this is not an Error, it subclasses java.lang.Error because it's not meant to be caught by application code (similar to java.lang.ThreadDeath).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RedirectException(java.lang.String url)
Creates a new RedirectException object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getUrl()
Return the URL to redirect to.
-