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:
  • Constructor Details

    • 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