|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.meterware.httpunit.RecursiveRedirectionException
Class used to indicate when a request to a resource resulted in an HTTP redirect response that lead to a recursive loop of redirections
Constructor Summary | |
RecursiveRedirectionException(java.net.URL url,
java.lang.String message)
Create a new RecursiveRedirectionException with the
specified URL and detail message. |
|
RecursiveRedirectionException(java.net.URL url,
java.lang.String message,
java.lang.Throwable cause)
Create a new RecursiveRedirectionException with the
specified URL, detail message and cause. |
|
RecursiveRedirectionException(java.net.URL url,
java.lang.Throwable cause)
Create a new RecursiveRedirectionException with the
specified URL and cause. |
Method Summary | |
java.net.URL |
getURL()
Returns the URL that caused this exception to be thrown. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public RecursiveRedirectionException(java.net.URL url, java.lang.Throwable cause)
RecursiveRedirectionException
with the
specified URL and cause.
url
- the URL
that caused the recursive loop to be detectedcause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)public RecursiveRedirectionException(java.net.URL url, java.lang.String message)
RecursiveRedirectionException
with the
specified URL and detail message.
url
- the URL
that caused the recursive loop to be
detected. The URL is saved for later retrieval by
getURL()
message
- the detail message. The detail message is saved for later
retrieval by Throwable.getMessage()
public RecursiveRedirectionException(java.net.URL url, java.lang.String message, java.lang.Throwable cause)
RecursiveRedirectionException
with the
specified URL, detail message and cause.
url
- the URL
that caused the recursive loop to be
detected. The URL is saved for later retrieval by
getURL()
message
- the detail message. The detail message is saved for later
retrieval by Throwable.getMessage()
cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)Method Detail |
public java.net.URL getURL()
URL
that gave rise to this Exception
|
Copyright © 2000-2008 Russell Gold. See license agreement for rights granted. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |