Class NotInitializedException

All Implemented Interfaces:
Serializable

public class NotInitializedException extends RuntimeException
Thrown when an access or action is attempted on an object that has not been initialized
but requires initialization before it can be used.
See Also:
  • Constructor Details

    • NotInitializedException

      public NotInitializedException()
      Constructs a new not initialized exception with no details.
    • NotInitializedException

      public NotInitializedException(@Nullable @Nullable String message)
      Constructs a new not initialized exception with the specified message.
      Parameters:
      message - The message of the exception
    • NotInitializedException

      public NotInitializedException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Constructs a new not initialized exception with the specified message and cause.
      Parameters:
      message - The message of the exception
      cause - The cause of the exception
    • NotInitializedException

      public NotInitializedException(@Nullable @Nullable Throwable cause)
      Constructs a new not initialized exception with the specified cause.
      Parameters:
      cause - The cause of the exception