com.groovemanager.exception
Class NotReadyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.groovemanager.exception.NotReadyException
All Implemented Interfaces:
java.io.Serializable

public class NotReadyException
extends java.lang.Exception

This Exception will be thrown if any kind of a provider is asked to provide data and he is because of some reason not able to.

Author:
Manu Robledo
See Also:
Serialized Form

Constructor Summary
NotReadyException()
          Constructs a new NotReadyException.
NotReadyException(java.lang.String message)
          Constructs a new NotReadyException with the given message.
NotReadyException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new NotReadyException with the given message and the given Throwable that prevents the provider from being ready.
NotReadyException(java.lang.Throwable cause)
          Constructs a new NotReadyException with the given Throwable that prevents the provider from being ready.
 
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

NotReadyException

public NotReadyException()
Constructs a new NotReadyException.


NotReadyException

public NotReadyException(java.lang.String message)
Constructs a new NotReadyException with the given message.

Parameters:
message - The message telling, why the provider is not ready

NotReadyException

public NotReadyException(java.lang.String message,
                         java.lang.Throwable cause)
Constructs a new NotReadyException with the given message and the given Throwable that prevents the provider from being ready.

Parameters:
message - The message telling, why the provider is not ready
cause - The Throwable preventing the provider from being ready

NotReadyException

public NotReadyException(java.lang.Throwable cause)
Constructs a new NotReadyException with the given Throwable that prevents the provider from being ready.

Parameters:
cause - The Throwable preventing the provider from being ready