1 15 package org.apache.tapestry; 16 17 import org.apache.hivemind.ApplicationRuntimeException; 18 19 29 30 public class RedirectException extends ApplicationRuntimeException 31 { 32 private String _redirectLocation; 33 34 public RedirectException(String redirectLocation) 35 { 36 this(null, redirectLocation); 37 } 38 39 48 49 public RedirectException(String message, String redirectLocation) 50 { 51 super(message); 52 53 _redirectLocation = redirectLocation; 54 } 55 56 public String getRedirectLocation() 57 { 58 return _redirectLocation; 59 } 60 } | Popular Tags |