Package org.apache.maven.archiva.policies

Examples of org.apache.maven.archiva.policies.ProxyDownloadException


                }
            }

            if ( !previousExceptions.isEmpty() )
            {
                throw new ProxyDownloadException( "Failures occurred downloading from some remote repositories",
                                                  previousExceptions );
            }

            log.debug( "Exhausted all target repositories, artifact " + Keys.toKey( artifact ) + " not found." );
        }
View Full Code Here


        if ( process )
        {
            // if the exception was queued, don't throw it
            if ( !previousExceptions.containsKey( content.getId() ) )
            {
                throw new ProxyDownloadException(
                    "An error occurred in downloading from the remote repository, and the policy is to fail immediately",
                    content.getId(), exception );
            }
        }
        else
View Full Code Here

            }
        }

        if ( !previousExceptions.isEmpty() )
        {
            throw new ProxyDownloadException( "Failures occurred downloading from some remote repositories",
                                              previousExceptions );
        }

        log.debug( "Exhausted all target repositories, artifact " + Keys.toKey( artifact ) + " not found." );
View Full Code Here

        if ( process )
        {
            // if the exception was queued, don't throw it
            if ( !previousExceptions.containsKey( content.getId() ) )
            {
                throw new ProxyDownloadException(
                                                  "An error occurred in downloading from the remote repository, and the policy is to fail immediately",
                                                  content.getId(), exception );
            }
        }
        else
View Full Code Here

            }
        }

        if ( !previousExceptions.isEmpty() )
        {
            throw new ProxyDownloadException( "Failures occurred downloading from some remote repositories",
                                              previousExceptions );
        }

        log.debug( "Exhausted all target repositories, artifact " + Keys.toKey( artifact ) + " not found." );
View Full Code Here

        if ( process )
        {
            // if the exception was queued, don't throw it
            if ( !previousExceptions.containsKey( content.getId() ) )
            {
                throw new ProxyDownloadException(
                    "An error occurred in downloading from the remote repository, and the policy is to fail immediately",
                    content.getId(), exception );
            }
        }
        else
View Full Code Here

            }
        }

        if ( !previousExceptions.isEmpty() )
        {
            throw new ProxyDownloadException( "Failures occurred downloading from some remote repositories",
                                              previousExceptions );
        }

        log.debug( "Exhausted all target repositories, artifact " + Keys.toKey( artifact ) + " not found." );
View Full Code Here

        if ( process )
        {
            // if the exception was queued, don't throw it
            if ( !previousExceptions.containsKey( content.getId() ) )
            {
                throw new ProxyDownloadException(
                                                  "An error occurred in downloading from the remote repository, and the policy is to fail immediately",
                                                  content.getId(), exception );
            }
        }
        else
View Full Code Here

TOP

Related Classes of org.apache.maven.archiva.policies.ProxyDownloadException

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.