Package org.apache.avalon.repository

Examples of org.apache.avalon.repository.RepositoryRuntimeException


        catch( Throwable e )
        {
            final String error =
              "Unexpected exception while attempting to read properties from: "
              + file;
            throw new RepositoryRuntimeException( error, e );
        }
    }
View Full Code Here


            catch( Throwable e )
            {
                final String error =
                  "Internal error while attempting to construct url for host: "
                  + path;
                throw new RepositoryRuntimeException( error, e );
            }
        }
        return hosts;
    }
View Full Code Here

            }
            return dependencies;
        }
        catch ( NamingException e )
        {
            throw new RepositoryRuntimeException(
              "Failed to resolve dependencies for [" + key
              + "] on the attribute set [" + attributes + "].", e ) ;
        }
    }
View Full Code Here

        }
        catch( Throwable e )
        {
            final String error =
              "Could not create default factory criteria.";
            throw new RepositoryRuntimeException( error, e );
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.avalon.repository.RepositoryRuntimeException

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.