Class AlreadyInitializedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.luis.utils.exception.AlreadyInitializedException
All Implemented Interfaces:
Serializable

public class AlreadyInitializedException extends RuntimeException
Thrown when an initialization is attempted on an object that has already been initialized.
See Also:
  • Constructor Details

    • AlreadyInitializedException

      public AlreadyInitializedException()
      Constructs a new already initialized exception with no details.
    • AlreadyInitializedException

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

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

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