Lines Matching refs:FSRedirectException

25  * $Id: FSRedirectException.java,v 1.2 2008/06/25 05:46:40 qcheng Exp $
58 * unchecked exception (either FSRedirectException or RuntimeException).
66 * exceptions (FSRedirectException).
72 * An exception of type FSRedirectException can embed any
78 * tier. To ensure tracking info, the constructor FSRedirectException(
86 * FSRedirectException should probably be thrown only by external API's.
98 * Steps for creating FSRedirectException Sub-classes and messages
109 * 3. Create a sub-class of FSRedirectException and override the constructors.
111 * public class FSAccountManagementException extends FSRedirectException {
128 * FSRedirectException ux =
129 * new FSRedirectException("Some weird error!...");
138 * FSRedirectException fse =
139 * new FSRedirectException("Some weird error!...", le);
150 * } catch (FSRedirectException fse) {
162 * @see #FSRedirectException(String, Object[], Throwable)
171 public class FSRedirectException extends L10NMessageImpl {
181 public FSRedirectException(String errorCode, Object[] args) {
192 public FSRedirectException(String errorCode, Object[] args,
200 * Constructs a <code>FSRedirectException</code> with a detailed message.
206 public FSRedirectException(String message) {
213 * Constructs a <code>FSRedirectException</code> with a message and
220 public FSRedirectException(Throwable rootCause, String message) {
228 * Constructs a <code>FSRedirectException</code> with an exception.
233 public FSRedirectException(Exception ex) {
248 * Formats this <code>FSRedirectException</code> to a
281 * Returns a formatted <code>FSRedirectException</code> exception message;
284 * @return a formatted <code>FSRedirectException</code> exception message.
364 * FSRedirectException