01: /**********************************************************************
02: Copyright (c) 2005 Erik Bengtson and others. All rights reserved.
03: Licensed under the Apache License, Version 2.0 (the "License");
04: you may not use this file except in compliance with the License.
05: You may obtain a copy of the License at
06:
07: http://www.apache.org/licenses/LICENSE-2.0
08:
09: Unless required by applicable law or agreed to in writing, software
10: distributed under the License is distributed on an "AS IS" BASIS,
11: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12: See the License for the specific language governing permissions and
13: limitations under the License.
14:
15:
16: Contributors:
17: ...
18: **********************************************************************/package org.jpox.exceptions;
19:
20: /**
21: * A <tt>ClassNotResolvedException</tt> is thrown if an attempt is
22: * made to load a class that is cannot be found by the ClassLoaderResolver.
23: *
24: * @version $Revision: 1.5 $
25: */
26: public class ClassNotResolvedException extends JPOXException {
27: /**
28: * Constructs a class-not-detachable exception with the specified
29: * detail message and nested exception.
30: * @param msg the exception message
31: * @param nested the nested exception(s).
32: */
33: public ClassNotResolvedException(String msg, Throwable nested) {
34: super (msg, nested);
35: }
36:
37: /**
38: * Constructs a class-not-detachable exception with the specified
39: * detail message and nested exception.
40: * @param msg the exception message
41: */
42: public ClassNotResolvedException(String msg) {
43: super(msg);
44: }
45: }
|