1. /*
  2. * @(#)UNSUPPORTED_POLICY_VALUE.java 1.6 00/02/02
  3. *
  4. * Copyright 1995-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 org.omg.CORBA;
  11. /**
  12. * UNSUPPORTED_POLICY_VALUE is one of the PolicyErrorCodes which would be filled in
  13. * the PolicyError exception.
  14. *
  15. * UNSUPPORTED_POLICY_VALUE - The value requested for the Policy is of a
  16. * valid type and within the valid range for that type, but this valid value
  17. * is not currently supported.
  18. *
  19. * @author rip-dev
  20. * @version 1.6 02/02/00
  21. */
  22. public interface UNSUPPORTED_POLICY_VALUE {
  23. /**
  24. * The Error code for PolicyError exception.
  25. */
  26. final short value = (short) (4L);
  27. };