org.hermit.android.net
Class WebFetcher.FetchException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.hermit.android.net.WebFetcher.FetchException
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
WebFetcher

public static class WebFetcher.FetchException
extends java.lang.Exception

Web fetching exception. Used to signal a problem while fetching data.

See Also:
Serialized Form

Constructor Summary
WebFetcher.FetchException(java.lang.String s)
          Create a FetchException with a message.
WebFetcher.FetchException(java.lang.String s, java.lang.Exception e)
          Create a FetchException based on another exception.
 
Method Summary
 
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

WebFetcher.FetchException

public WebFetcher.FetchException(java.lang.String s)
Create a FetchException with a message.

Parameters:
s - The exception message.

WebFetcher.FetchException

public WebFetcher.FetchException(java.lang.String s,
                                 java.lang.Exception e)
Create a FetchException based on another exception.

Parameters:
s - The exception message.
e - The root exception.