01: /*****************************************************************************
02: * Copyright (C) PicoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: * Original code by *
09: *****************************************************************************/package org.picocontainer;
10:
11: public class PicoClassNotFoundException extends PicoException {
12:
13: public PicoClassNotFoundException(final String className,
14: final ClassNotFoundException cnfe) {
15: super ("Class '" + className + "' not found", cnfe);
16: }
17: }
|