planet.commonapi.exception
Class InitializationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byplanet.commonapi.exception.InitializationException
All Implemented Interfaces:
java.io.Serializable

public class InitializationException
extends java.lang.Exception

This Exception is thrown by cannot read completely a properties file of any Factory, and some factory cannot initialize any parameter on its setter methods. The message will be specified for each error.

Author:
Jordi Pujol
See Also:
Serialized Form

Constructor Summary
InitializationException()
          Generates new instance with default message.
InitializationException(java.lang.String message)
          Generates nes instance with the specified message
InitializationException(java.lang.String message, java.lang.Throwable cause)
          Inicialization of the new instance.
InitializationException(java.lang.Throwable cause)
          Initialization of the new instance.
 
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

InitializationException

public InitializationException()
Generates new instance with default message.


InitializationException

public InitializationException(java.lang.String message)
Generates nes instance with the specified message

Parameters:
message - Message to be inicialized the Exception.

InitializationException

public InitializationException(java.lang.String message,
                               java.lang.Throwable cause)
Inicialization of the new instance.

Parameters:
message - The message to be inicialized.
cause - Throwable cause of the exception.

InitializationException

public InitializationException(java.lang.Throwable cause)
Initialization of the new instance.

Parameters:
cause - Throwable cause of the exception.