All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.lifecycle.NoSuchPhaseException Maven / Gradle / Ivy

There is a newer version: 3.0-alpha-2
Show newest version
package org.apache.maven.lifecycle;

public class NoSuchPhaseException
    extends LifecycleSpecificationException
{

    private final String phase;

    public NoSuchPhaseException( String phase, String message, Throwable cause )
    {
        super( message, cause );
        this.phase = phase;
    }

    public NoSuchPhaseException( String phase, String message )
    {
        super( message );
        this.phase = phase;
    }
    
    public String getPhase()
    {
        return phase;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy