KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > naming > directory > InvalidAttributeIdentifierException


1 /*
2  * @(#)InvalidAttributeIdentifierException.java 1.7 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.naming.directory;
9
10 import javax.naming.NamingException JavaDoc;
11
12 /**
13   * This exception is thrown when an attempt is
14   * made to add to create an attribute with an invalid attribute identifier.
15   * The validity of an attribute identifier is directory-specific.
16   * <p>
17   * Synchronization and serialization issues that apply to NamingException
18   * apply directly here.
19   *
20   * @author Rosanna Lee
21   * @author Scott Seligman
22   * @version 1.7 03/12/19
23   * @since 1.3
24   */

25
26 public class InvalidAttributeIdentifierException extends NamingException JavaDoc {
27     /**
28      * Constructs a new instance of InvalidAttributeIdentifierException using the
29      * explanation supplied. All other fields set to null.
30      * @param explanation Possibly null string containing additional detail about this exception.
31      * @see java.lang.Throwable#getMessage
32      */

33     public InvalidAttributeIdentifierException(String JavaDoc explanation) {
34     super(explanation);
35     }
36
37     /**
38       * Constructs a new instance of InvalidAttributeIdentifierException.
39       * All fields are set to null.
40       */

41     public InvalidAttributeIdentifierException() {
42     super();
43     }
44
45     /**
46      * Use serialVersionUID from JNDI 1.1.1 for interoperability
47      */

48     private static final long serialVersionUID = -9036920266322999923L;
49 }
50
Popular Tags