src/share/classes/com/sun/corba/se/spi/logging/data/Interceptors.mc

Wed, 06 Apr 2011 20:36:07 -0700

author
ohair
date
Wed, 06 Apr 2011 20:36:07 -0700
changeset 263
53c6f4ad1e06
parent 246
6a3903e5b6cc
child 748
6845b95cba6b
permissions
-rw-r--r--

7033660: Update copyright year to 2011 on any files changed in 2011
Reviewed-by: dholmes

duke@1 1 ;
ohair@263 2 ; Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
duke@1 3 ; DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 ;
duke@1 5 ; This code is free software; you can redistribute it and/or modify it
duke@1 6 ; under the terms of the GNU General Public License version 2 only, as
ohair@158 7 ; published by the Free Software Foundation. Oracle designates this
duke@1 8 ; particular file as subject to the "Classpath" exception as provided
ohair@158 9 ; by Oracle in the LICENSE file that accompanied this code.
duke@1 10 ;
duke@1 11 ; This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 ; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 ; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 ; version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 ; accompanied this code).
duke@1 16 ;
duke@1 17 ; You should have received a copy of the GNU General Public License version
duke@1 18 ; 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 ; Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 ;
ohair@158 21 ; Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@158 22 ; or visit www.oracle.com if you need additional information or have any
ohair@158 23 ; questions.
duke@1 24 ;
duke@1 25 ("com.sun.corba.se.impl.logging" "InterceptorsSystemException" INTERCEPTORS
duke@1 26 (
duke@1 27 (BAD_PARAM
duke@1 28 (TYPE_OUT_OF_RANGE 1 WARNING "Interceptor type {0} is out of range")
duke@1 29 (NAME_NULL 2 WARNING "Interceptor's name is null: use empty string for anonymous interceptors"))
duke@1 30 (BAD_INV_ORDER
duke@1 31 (RIR_INVALID_PRE_INIT 1 WARNING "resolve_initial_reference is invalid during pre_init")
duke@1 32 (BAD_STATE1 2 WARNING "Expected state {0}, but current state is {1}")
duke@1 33 (BAD_STATE2 3 WARNING "Expected state {0} or {1}, but current state is {2}"))
duke@1 34 (COMM_FAILURE
duke@1 35 (IOEXCEPTION_DURING_CANCEL_REQUEST 1 WARNING "IOException during cancel request"))
duke@1 36 (INTERNAL
duke@1 37 (EXCEPTION_WAS_NULL 1 WARNING "Exception was null")
duke@1 38 (OBJECT_HAS_NO_DELEGATE 2 WARNING "Object has no delegate")
duke@1 39 (DELEGATE_NOT_CLIENTSUB 3 WARNING "Delegate was not a ClientRequestDispatcher")
duke@1 40 (OBJECT_NOT_OBJECTIMPL 4 WARNING "Object is not an ObjectImpl")
duke@1 41 (EXCEPTION_INVALID 5 WARNING "Assertion failed: Interceptor set exception to UserException or ApplicationException")
duke@1 42 (REPLY_STATUS_NOT_INIT 6 WARNING "Assertion failed: Reply status is initialized but not SYSTEM_EXCEPTION or LOCATION_FORWARD")
duke@1 43 (EXCEPTION_IN_ARGUMENTS 7 WARNING "Exception in arguments")
duke@1 44 (EXCEPTION_IN_EXCEPTIONS 8 WARNING "Exception in exceptions")
duke@1 45 (EXCEPTION_IN_CONTEXTS 9 WARNING "Exception in contexts")
duke@1 46 (EXCEPTION_WAS_NULL_2 10 WARNING "Another exception was null")
duke@1 47 (SERVANT_INVALID 11 WARNING "Servant invalid")
duke@1 48 (CANT_POP_ONLY_PICURRENT 12 WARNING "Can't pop only PICurrent")
duke@1 49 (CANT_POP_ONLY_CURRENT_2 13 WARNING "Can't pop another PICurrent")
duke@1 50 (PI_DSI_RESULT_IS_NULL 14 WARNING "DSI result is null")
duke@1 51 (PI_DII_RESULT_IS_NULL 15 WARNING "DII result is null")
duke@1 52 (EXCEPTION_UNAVAILABLE 16 WARNING "Exception is unavailable")
duke@1 53 (CLIENT_INFO_STACK_NULL 17 WARNING "Assertion failed: client request info stack is null")
duke@1 54 (SERVER_INFO_STACK_NULL 18 WARNING "Assertion failed: Server request info stack is null")
duke@1 55 (MARK_AND_RESET_FAILED 19 WARNING "Mark and reset failed")
duke@1 56 (SLOT_TABLE_INVARIANT 20 WARNING "currentIndex > tableContainer.size(): {0} > {1}")
duke@1 57 (INTERCEPTOR_LIST_LOCKED 21 WARNING "InterceptorList is locked")
duke@1 58 (SORT_SIZE_MISMATCH 22 WARNING "Invariant: sorted size + unsorted size == total size was violated"))
duke@1 59 (NO_IMPLEMENT
duke@1 60 (PI_ORB_NOT_POLICY_BASED 1 WARNING "Policies not implemented"))
duke@1 61 (OBJECT_NOT_EXIST
duke@1 62 (ORBINITINFO_INVALID 1 FINE "ORBInitInfo object is only valid during ORB_init"))
duke@1 63 (UNKNOWN
duke@1 64 (UNKNOWN_REQUEST_INVOKE
duke@1 65 1 FINE "Unknown request invocation error"))
duke@1 66 ))
duke@1 67
duke@1 68 ;;; End of file.

mercurial