net.anidb.udp
Class DataFieldException

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

public class DataFieldException
extends java.lang.Exception

Thrown if a problem with a data field occurs.

This can be happen by working with the value of the data field.

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

Constructor Summary
DataFieldException()
          Constructs a new Exception.
DataFieldException(java.lang.String message)
          Constructs a new Exception with a message.
DataFieldException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new Exception with a message and a cause.
DataFieldException(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

DataFieldException

public DataFieldException()
Constructs a new Exception.


DataFieldException

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

Parameters:
message - The message.

DataFieldException

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

Parameters:
cause - The cause.

DataFieldException

public DataFieldException(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.