KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nanocontainer > script > bsh > BeanShellScriptInitializationException


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 Leo Simons *
9  *****************************************************************************/

10 package org.nanocontainer.script.bsh;
11
12 import org.picocontainer.PicoInitializationException;
13
14 /**
15  * @author <a HREF="mail at leosimons dot com">Leo Simons</a>
16  * @version $Id: BeanShellScriptInitializationException.java 3144 2006-12-26 10:12:19Z mauro $
17  */

18 public class BeanShellScriptInitializationException
19         extends PicoInitializationException {
20
21     BeanShellScriptInitializationException(String JavaDoc message) {
22         super(message);
23     }
24
25     BeanShellScriptInitializationException(Throwable JavaDoc cause) {
26         this("BeanShellScriptInitializationException: " + cause.getClass().getName() + " "
27                 + cause.getMessage());
28     }
29 }
30
Popular Tags