2
|
1 |
/*
|
5506
|
2 |
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
2
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
5506
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
2
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
5506
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
2
|
10 |
*
|
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
* accompanied this code).
|
|
16 |
*
|
|
17 |
* You should have received a copy of the GNU General Public License version
|
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
*
|
5506
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
22 |
* or visit www.oracle.com if you need additional information or have any
|
|
23 |
* questions.
|
2
|
24 |
*/
|
|
25 |
|
|
26 |
package javax.naming.directory;
|
|
27 |
|
|
28 |
import javax.naming.NamingException;
|
|
29 |
|
|
30 |
/**
|
|
31 |
* This exception is thrown when an attempt is
|
|
32 |
* made to add or modify an attribute set that has been specified
|
|
33 |
* incompletely or incorrectly. This could happen, for example,
|
|
34 |
* when attempting to add or modify a binding, or to create a new
|
|
35 |
* subcontext without specifying all the mandatory attributes
|
|
36 |
* required for creation of the object. Another situation in
|
|
37 |
* which this exception is thrown is by specification of incompatible
|
|
38 |
* attributes within the same attribute set, or attributes in conflict
|
|
39 |
* with that specified by the object's schema.
|
|
40 |
* <p>
|
|
41 |
* Synchronization and serialization issues that apply to NamingException
|
|
42 |
* apply directly here.
|
|
43 |
*
|
|
44 |
* @author Rosanna Lee
|
|
45 |
* @author Scott Seligman
|
|
46 |
* @since 1.3
|
|
47 |
*/
|
|
48 |
|
|
49 |
public class InvalidAttributesException extends NamingException {
|
|
50 |
/**
|
|
51 |
* Constructs a new instance of InvalidAttributesException using an
|
|
52 |
* explanation. All other fields are set to null.
|
|
53 |
* @param explanation Additional detail about this exception. Can be null.
|
|
54 |
* @see java.lang.Throwable#getMessage
|
|
55 |
*/
|
|
56 |
public InvalidAttributesException(String explanation) {
|
|
57 |
super(explanation);
|
|
58 |
}
|
|
59 |
|
|
60 |
/**
|
|
61 |
* Constructs a new instance of InvalidAttributesException.
|
|
62 |
* All fields are set to null.
|
|
63 |
*/
|
|
64 |
public InvalidAttributesException() {
|
|
65 |
super();
|
|
66 |
}
|
|
67 |
|
|
68 |
/**
|
|
69 |
* Use serialVersionUID from JNDI 1.1.1 for interoperability
|
|
70 |
*/
|
|
71 |
private static final long serialVersionUID = 2607612850539889765L;
|
|
72 |
}
|