001 /***************************************************************************** 002 * Copyright (C) PicoContainer 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.picocontainer.script; 012 013 import org.picocontainer.PicoException; 014 015 /** 016 * Exception thrown when invalid markup is encountered when assembling {@link org.picocontainer.classname.ClassLoadingPicoContainer ScriptedPicoContainer}s. 017 * 018 * @author <a href="mailto:james@coredevelopers.net">James Strachan</a> 019 * @author Aslak Hellesøy 020 */ 021 @SuppressWarnings("serial") 022 public class ScriptedPicoContainerMarkupException extends PicoException { 023 024 public ScriptedPicoContainerMarkupException(String message) { 025 super(message); 026 } 027 028 public ScriptedPicoContainerMarkupException(String message, Throwable e) { 029 super(message, e); 030 } 031 032 public ScriptedPicoContainerMarkupException(Throwable e) { 033 super(e); 034 } 035 }