Class LifecyclePhaseNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class LifecyclePhaseNotFoundException
    extends java.lang.Exception
    Signals a failure to locate the lifecycle for some phase.
    Author:
    Benjamin Bentmann
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      LifecyclePhaseNotFoundException​(java.lang.String message, java.lang.String lifecyclePhase)
      Creates a new exception to indicate that the specified lifecycle phase is not defined by any known lifecycle.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLifecyclePhase()
      Gets the lifecycle phase that was not found.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • LifecyclePhaseNotFoundException

        public LifecyclePhaseNotFoundException​(java.lang.String message,
                                               java.lang.String lifecyclePhase)
        Creates a new exception to indicate that the specified lifecycle phase is not defined by any known lifecycle.
        Parameters:
        message - The detail message, may be null.
        lifecyclePhase - The name of the lifecycle phase that could not be located, may be null.
    • Method Detail

      • getLifecyclePhase

        public java.lang.String getLifecyclePhase()
        Gets the lifecycle phase that was not found.
        Returns:
        The lifecycle phase that was not found, never null.