KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nanocontainer > script > NanoContainerMarkupException


1 /*****************************************************************************
2  * Copyright (C) NanoContainer Organization. All rights reserved. *
3  * ------------------------------------------------------------------------- *
4  * The software in this package is published under the terms of the BSD *
5  * style license a copy of which has been included with this distribution in *
6  * the LICENSE.txt file. *
7  * *
8  * Original code by James Strachan *
9  *****************************************************************************/

10
11 package org.nanocontainer.script;
12
13 import org.picocontainer.PicoException;
14
15 /**
16  * Exception thrown due to invalid markup when assembling {@link org.nanocontainer.NanoContainer}s.
17  *
18  * @author <a HREF="mailto:james@coredevelopers.net">James Strachan</a>
19  * @author Aslak Helles&oslash;y
20  * @version $Revision: 1641 $
21  */

22 public class NanoContainerMarkupException extends PicoException {
23
24     public NanoContainerMarkupException(String JavaDoc message) {
25         super(message);
26     }
27
28     public NanoContainerMarkupException(String JavaDoc message, Throwable JavaDoc e) {
29         super(message, e);
30     }
31
32     public NanoContainerMarkupException(Throwable JavaDoc e) {
33         super(e);
34     }
35 }
36
Popular Tags