Class ApplicationStartupException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.micronaut.runtime.exceptions.ApplicationStartupException
All Implemented Interfaces:
Serializable

public class ApplicationStartupException extends RuntimeException
Thrown when the application fails to start.
Since:
1.0
Author:
Graeme Rocher
See Also:
  • Constructor Details

    • ApplicationStartupException

      public ApplicationStartupException(String message, Throwable cause)
      Create exception with detailed message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • ApplicationStartupException

      public ApplicationStartupException(String message)
      Create exception with detailed message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).