001    /*****************************************************************************
002     * Copyright (C) NanoContainer Organization. All rights reserved.            *
003     * ------------------------------------------------------------------------- *
004     * The software in this package is published under the terms of the BSD      *
005     * style license a copy of which has been included with this distribution in *
006     * the LICENSE.txt file.                                                     *
007     *                                                                           *
008     * Original code by James Strachan                                           *
009     *****************************************************************************/
010    
011    package org.nanocontainer.script;
012    
013    import org.picocontainer.PicoException;
014    
015    /**
016     * Exception thrown due to invalid markup when assembling {@link org.nanocontainer.NanoContainer}s.
017     *
018     * @author <a href="mailto:james@coredevelopers.net">James Strachan</a>
019     * @author Aslak Hellesøy
020     * @version $Revision: 1641 $
021     */
022    public class NanoContainerMarkupException extends PicoException {
023    
024        public NanoContainerMarkupException(String message) {
025            super(message);
026        }
027    
028        public NanoContainerMarkupException(String message, Throwable e) {
029            super(message, e);
030        }
031    
032        public NanoContainerMarkupException(Throwable e) {
033            super(e);
034        }
035    }