Rem Rem Copyright (c) 2000, 2008, Oracle and/or its affiliates. Rem All rights reserved. Rem create or replace package wb_rti_exceptions is RT_SERVICE_ALREADY_RUNNING constant number := -20001; RT_IMMUTABLE_PROPERTY constant number := -20002; RT_INVALID_STATE constant number := -20003; RT_INVALID_ACK constant number := -20004; RT_INVALID_REQUEST constant number := -20005; RT_SERVICE_STOPPING constant number := -20006; RT_PARAMETER_NOT_INITIALIZED constant number := -20007; RT_STORE_IN_USE constant number := -20008; RT_INVALID_FILE_TYPE constant number := -20009; RT_INVALID_AUDIT_ID constant number := -20010; RT_INVALID_OBJECT_TYPE_ID constant number := -20011; RT_INVALID_STORE_TYPE_ID constant number := -20012; RT_INVALID_STORE_ID constant number := -20013; RT_INVALID_OPERATOR_ID constant number := -20014; RT_INVALID_TASK_ID constant number := -20015; RT_INVALID_PARAMETER constant number := -20016; RT_INVALID_PROPERTY_ID constant number := -20017; RT_INVALID_STORE_PARAMETER constant number := -20018; RT_INVALID_CONTEXT_ATTRIBUTE constant number := -20019; RT_INVALID_STATUS constant number := -20020; RT_INVALID_SEVERITY constant number := -20021; RT_INVALID_ACTION constant number := -20022; RT_INVALID_FORMAT_TYPE constant number := -20023; RT_INVALID_OPERATION constant number := -20024; RT_INVALID_EVENT_TYPE constant number := -20025; RT_INVALID_CLOSEDOWN_KIND constant number := -20026; RT_INVALID_ACK_TYPE constant number := -20027; RT_INVALID_OPS_ENABLED constant number := -20028; RT_SERVICE_NOT_AVAILABLE constant number := -20029; RT_EXPRESSION_WRONG_TYPE constant number := -20030; RT_PARAMETER_SET_FAILED constant number := -20031; RT_PARAMETER_GET_FAILED constant number := -20032; RT_BINDING_TARGET_NOT_FOUND constant number := -20033; RT_BINDING_TARGET_WRONG_TYPE constant number := -20034; RT_TASK_MISSING constant number := -20035; RT_NO_DEPLOY_ACCESS constant number := -20037; RT_NO_EXECUTE_ACCESS constant number := -20038; RT_NO_ADMIN_ACCESS constant number := -20039; RT_NO_ADMIN_REPOS_ACCESS constant number := -20040; RT_ACCESS_DENIED constant number := -20041; RT_UPGRADE_INCOMPATIBILITY constant number := -20042; procedure throw ( p_number in number ); procedure throw ( p_number in number, p_1 in varchar2 ); procedure throw ( p_number in number, p_1 in varchar2, p_2 in varchar2 ); procedure throw ( p_number in number, p_1 in varchar2, p_2 in varchar2, p_3 in varchar2 ); end wb_rti_exceptions; /