01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package javax.naming;
19:
20: /**
21: * A <code>NotContextException</code> is the exception thrown by the naming
22: * classes when an operation on a context object cannot proceed because the
23: * resolved object is not a context type. If the operation requires a particular
24: * subclass of a context type, such as an <code>LdapContext</code>, and the
25: * resolved object is a context object, but not of the required subclass, then a
26: * <code>NotContextException</code> is thrown.
27: * <p>
28: * Multithreaded access to a <code>NotContextException</code> instance is only
29: * safe when client code locks the object first.
30: * </p>
31: */
32: public class NotContextException extends NamingException {
33:
34: /*
35: * This constant is used during deserialization to check the version which
36: * created the serialized object.
37: */
38: static final long serialVersionUID = 849752551644540417L;
39:
40: /**
41: * Constructs a <code>NotContextException</code> instance with all data
42: * initialized to null.
43: */
44: public NotContextException() {
45: super ();
46:
47: }
48:
49: /**
50: * Constructs a <code>NotContextException</code> instance with a specified
51: * error message.
52: *
53: * @param msg
54: * The detail message for this exception. It may be null.
55: */
56: public NotContextException(String msg) {
57: super(msg);
58: }
59:
60: }
|