001    /*******************************************************************************
002     * Copyright (C) PicoContainer Organization. All rights reserved. 
003     * ---------------------------------------------------------------------------
004     * The software in this package is published under the terms of the BSD style
005     * license a copy of which has been included with this distribution in the
006     * LICENSE.txt file. 
007     ******************************************************************************/
008    package org.picocontainer.script;
009    
010    import org.picocontainer.PicoException;
011    
012    /**
013     * Indicates that a given class for a builder was not found by the ScriptedContainerBuilderFactory
014     * when trying to use its specified classloader.
015     *
016     * @author Michael Rimov
017     */
018    @SuppressWarnings("serial")
019    public class BuilderClassNotFoundException extends PicoException {
020    
021        public BuilderClassNotFoundException(String message) {
022            super(message);
023        }
024    
025        public BuilderClassNotFoundException(Throwable cause) {
026            super(cause);
027        }
028    
029        public BuilderClassNotFoundException(String message, Throwable cause) {
030            super(message, cause);
031        }
032    }