net.anidb.http
Class HttpConnectionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by net.anidb.http.HttpConnectionException
All Implemented Interfaces:
java.io.Serializable

public class HttpConnectionException
extends java.lang.Exception

Thrown if a problem with the HTTP classes occurs.

Version:
1.0, 12.01.2010
Author:
grizzlyxp (http://anidb.net/perl-bin/animedb.pl?show=userpage&uid=63935)
See Also:
Serialized Form

Constructor Summary
HttpConnectionException()
          Constructs a new Exception.
HttpConnectionException(java.lang.String message)
          Constructs a new Exception with a message.
HttpConnectionException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new Exception with a message and a cause.
HttpConnectionException(java.lang.Throwable cause)
          Constructs a new Exception with a cause.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HttpConnectionException

public HttpConnectionException()
Constructs a new Exception.


HttpConnectionException

public HttpConnectionException(java.lang.String message)
Constructs a new Exception with a message.

Parameters:
message - The message.

HttpConnectionException

public HttpConnectionException(java.lang.Throwable cause)
Constructs a new Exception with a cause.

Parameters:
cause - The cause.

HttpConnectionException

public HttpConnectionException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs a new Exception with a message and a cause.

Parameters:
message - The message.
cause - The cause.