Last update: 2011-06-23

org.proteios.core
Class InvalidDataException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.proteios.core.BaseException
                  extended by org.proteios.core.InvalidDataException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidAnnotationException, InvalidPathException, InvalidUseOfNullException, ItemAlreadyExistsException, ItemNotFoundException, NumberOutOfRangeException, ParameterException, QuotaException, StringTooLongException

public class InvalidDataException
extends BaseException

Exceptions of this type are thrown when invalid data is encountered. The real exception thrown is usually of a subclass to this class.

Version:
2.0
Author:
Nicklas
See Also:
Serialized Form

Constructor Summary
InvalidDataException()
          Create a new InvalidDataException object.
InvalidDataException(Exception ex)
          Create a new InvalidDataException object.
InvalidDataException(String message)
          Create a new InvalidDataException object with the specified message.
 
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

InvalidDataException

public InvalidDataException()
Create a new InvalidDataException object.


InvalidDataException

public InvalidDataException(Exception ex)
Create a new InvalidDataException object.


InvalidDataException

public InvalidDataException(String message)
Create a new InvalidDataException object with the specified message.

Parameters:
message - The message to throw with the exception

Last update: 2011-06-23