Package org.apache.maven

Examples of org.apache.maven.InternalErrorException


    public void handleBuildError( final ReactorContext buildContext, final MavenSession rootSession,
                                  final MavenProject mavenProject, Exception e, final long buildStartTime )
    {
        if ( e instanceof RuntimeException )
        {
            e = new InternalErrorException( "Internal error: " + e, e );
        }

        buildContext.getResult().addException( e );

        long buildEndTime = System.currentTimeMillis();
View Full Code Here


    public void handleBuildError( final ReactorContext buildContext, final MavenSession rootSession,
                                  final MavenProject mavenProject, Exception e, final long buildStartTime )
    {
        if ( e instanceof RuntimeException )
        {
            e = new InternalErrorException( "Internal error: " + e, e );
        }

        buildContext.getResult().addException( e );

        long buildEndTime = System.currentTimeMillis();
View Full Code Here

                                  final MavenSession currentSession, final MavenProject mavenProject, Exception e,
                                  final long buildStartTime )
    {
        if ( e instanceof RuntimeException )
        {
            e = new InternalErrorException( "Internal error: " + e, e );
        }

        buildContext.getResult().addException( e );

        long buildEndTime = System.currentTimeMillis();
View Full Code Here

    public void handleBuildError( final ReactorContext buildContext, final MavenSession rootSession,
                                  final MavenProject mavenProject, Exception e, final long buildStartTime )
    {
        if ( e instanceof RuntimeException )
        {
            e = new InternalErrorException( "Internal error: " + e, e );
        }

        buildContext.getResult().addException( e );

        long buildEndTime = System.currentTimeMillis();
View Full Code Here

    public void handleBuildError( final ReactorContext buildContext, final MavenSession rootSession,
                                  final MavenProject mavenProject, Exception e, final long buildStartTime )
    {
        if ( e instanceof RuntimeException )
        {
            e = new InternalErrorException( "Internal error: " + e, e );
        }

        buildContext.getResult().addException( e );

        long buildEndTime = System.currentTimeMillis();
View Full Code Here

                                  final MavenSession currentSession, final MavenProject mavenProject, Exception e,
                                  final long buildStartTime )
    {
        if ( e instanceof RuntimeException )
        {
            e = new InternalErrorException( "Internal error: " + e, e );
        }

        buildContext.getResult().addException( e );

        long buildEndTime = System.currentTimeMillis();
View Full Code Here

TOP

Related Classes of org.apache.maven.InternalErrorException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.