1. /*
  2. * @(#)InvalidAttributeIdentifierException.java 1.4 00/02/02
  3. *
  4. * Copyright 1999, 2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.naming.directory;
  11. import javax.naming.NamingException;
  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.4 00/02/02
  23. * @since 1.3
  24. */
  25. public class InvalidAttributeIdentifierException extends NamingException {
  26. /**
  27. * Constructs a new instance of InvalidAttributeIdentifierException using the
  28. * explanation supplied. All other fields set to null.
  29. * @param explanation Possibly null string containing additional detail about this exception.
  30. * @see java.lang.Throwable#getMessage
  31. */
  32. public InvalidAttributeIdentifierException(String explanation) {
  33. super(explanation);
  34. }
  35. /**
  36. * Constructs a new instance of InvalidAttributeIdentifierException.
  37. * All fields are set to null.
  38. */
  39. public InvalidAttributeIdentifierException() {
  40. super();
  41. }
  42. /**
  43. * Use serialVersionUID from JNDI 1.1.1 for interoperability
  44. */
  45. private static final long serialVersionUID = -9036920266322999923L;
  46. }