Class NotReadyException

All Implemented Interfaces:
Serializable

public class NotReadyException extends IllegalStateException
To report that a component or method cannot be used at moment, since it has to complete some operation and it's not ready yet. In particular, this can be useful to manage asynchronous initialisation. When an invoker receives this exception, it should expect that the component becomes ready later on.
Author:
brandizi
Date:
25 Jan 2021
See Also:
  • Constructor Details

    • NotReadyException

      public NotReadyException(String message, Throwable cause)
    • NotReadyException

      public NotReadyException(String message)