1 /* 2 * @(#)UNSUPPORTED_POLICY.java 1.12 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 org.omg.CORBA; 9 10 /** 11 * One of the <tt>PolicyErrorCode</tt>s which would be filled if 12 * the requested <tt>Policy</tt> is understood to be valid by the 13 * ORB, but is not currently supported. 14 * 15 * @author rip-dev 16 * @version 1.12 12/19/03 17 */ 18 public interface UNSUPPORTED_POLICY { 19 /** 20 * The Error code for PolicyError exception. 21 */ 22 final short value = (short) (1L); 23 }; 24