

Public Member Functions | |
| AcsJException () | |
| AcsJException (String message) | |
| AcsJException (String message, Throwable cause) | |
| AcsJException (ErrorTrace etCause) | |
| AcsJException (String message, ErrorTrace etCause) | |
| String | toString () |
| String | getShortDescription () |
| abstract UserException | toCorbaException () |
| void | setSeverity () |
| Severity | getSeverity () |
| Object | setProperty (String key, String value) |
| String | getProperty (String key) |
| NameValue[] | getNameValueArray () |
| long | getTimestampMillis () |
| ErrorTrace | getErrorTrace () |
| ACSException | getACSException () |
| void | log (Logger logger) |
| int | getTraceDepth () |
| String | getFile () |
| String | getHost () |
| int | getLine () |
| String | getMethod () |
| String | getProcess () |
| String | getThreadName () |
| String | getSourceObject () |
Static Public Member Functions | |
| static void | setProcessName (String name) |
| static ErrorTrace | createSingleErrorTrace (Throwable thr, long defaultTimeMilli) |
Protected Member Functions | |
| abstract int | getErrorType () |
| abstract int | getErrorCode () |
Protected Attributes | |
| String | m_host |
| String | m_process |
| int | m_line |
| String | m_method |
| String | m_file |
| String | m_sourceObject |
| String | m_threadName |
| Severity | m_severity |
| Properties | m_properties |
| long | m_timeMilli |
Package Functions | |
| LogRecord | createSingleErrorTraceLogRecord (ErrorTrace et, String stackID, int stackLevel) |
Private Member Functions | |
| void | init () |
| ErrorTrace | createSingleErrorTrace () |
Static Private Member Functions | |
| static ErrorTrace | recursiveGetErrorTrace (Throwable thr, long defaultTimeMilli) |
| static void | addExceptionProperties (Throwable thr, ErrorTrace et) |
Private Attributes | |
| boolean | m_initialized = false |
Static Private Attributes | |
| static String | s_thisHost |
| static String | s_thisProcess |
Base class for any checked exceptions defined in ALMA Java code. Allows these Java exceptions to be interoperable with the ACS error system, i.e. that they can be converted to and from ErrorTrace or ACSException objects. See AcsJException(ErrorTrace), getErrorTrace, getACSException.
Not to be confused with alma.ACSErr.ACSException, which is a CORBA user exception with an alma.ACSErr.ErrorTrace inside. ACSException is declared as final, so that it's not an option to make our AcsJException a subclass of it. (todo check if that's due to OMG spec or JacORB).
For the conversion to and from the CORBA exception types, two ErrorTrace properties (i.e. NameValue objects referenced from ErrorTrace#data) are added:
javaex.class to store the exception class for later reconstruction javaex.msg to store the message text provided in the various constructors of Throwable and subclasses.| alma::acs::exceptions::AcsJException::AcsJException | ( | ) | [inline] |
References init().
| alma::acs::exceptions::AcsJException::AcsJException | ( | String | message | ) | [inline] |
References init().
| alma::acs::exceptions::AcsJException::AcsJException | ( | String | message, | |
| Throwable | cause | |||
| ) | [inline] |
| alma::acs::exceptions::AcsJException::AcsJException | ( | ErrorTrace | etCause | ) | [inline] |
| alma::acs::exceptions::AcsJException::AcsJException | ( | String | message, | |
| ErrorTrace | etCause | |||
| ) | [inline] |
Creates a new exception, with the chain of causing exceptions derived from etCause.
| message | ||
| etCause |
References init().
| static void alma::acs::exceptions::AcsJException::addExceptionProperties | ( | Throwable | thr, | |
| ErrorTrace | et | |||
| ) | [inline, static, private] |
Referenced by createSingleErrorTrace().
| static ErrorTrace alma::acs::exceptions::AcsJException::createSingleErrorTrace | ( | Throwable | thr, | |
| long | defaultTimeMilli | |||
| ) | [inline, static] |
Converts a Throwable that may not be an AcsJException to an ErrorTrace.
For example, thr could be a NullPointerException thrown in the same process and thus not yet converted to DefaultAcsJException, but wrapped by some subclass of AcsJException which contains the NPE as its cause.
| defaultTimeMilli | Java-time (1970-based) used to estimate a time stamp if none is available, in order to avoid something from October 1582 in the new ErrorTrace. Typically the timestamp from the wrapping AcsJException. |
References addExceptionProperties(), alma::ACSErr::ErrorTrace::data, alma::ACSErr::Severity::Error, alma::ACSErr::ErrorTrace::errorCode, alma::ACSErr::ErrorTrace::errorType, alma::ACSErr::ErrorTrace::file, alma::ACSErr::ErrorTrace::host, alma::ACSErr::ErrorTrace::lineNum, alma::ACSErr::ErrorTrace::process, alma::ACSErr::ErrorTrace::routine, s_thisHost, s_thisProcess, alma::ACSErr::ErrorTrace::severity, alma::ACSErr::ErrorTrace::shortDescription, alma::ACSErr::ErrorTrace::sourceObject, alma::ACSErr::ErrorTrace::thread, and alma::ACSErr::ErrorTrace::timeStamp.
| ErrorTrace alma::acs::exceptions::AcsJException::createSingleErrorTrace | ( | ) | [inline, private] |
Creates an ErrorTrace object that represents this exception. Linked exceptions are not considered, so the returned ErrorTrace.previousError is left as null.
References addExceptionProperties(), alma::ACSErr::ErrorTrace::data, alma::ACSErr::ErrorTrace::errorCode, alma::ACSErr::ErrorTrace::errorType, alma::ACSErr::ErrorTrace::file, getErrorCode(), getErrorType(), getNameValueArray(), getSeverity(), getShortDescription(), alma::ACSErr::ErrorTrace::host, alma::ACSErr::ErrorTrace::lineNum, m_file, m_host, m_line, m_method, m_process, m_sourceObject, m_threadName, m_timeMilli, alma::ACSErr::ErrorTrace::process, alma::ACSErr::ErrorTrace::routine, alma::ACSErr::ErrorTrace::severity, alma::ACSErr::ErrorTrace::shortDescription, alma::ACSErr::ErrorTrace::sourceObject, alma::ACSErr::ErrorTrace::thread, and alma::ACSErr::ErrorTrace::timeStamp.
Referenced by log(), and recursiveGetErrorTrace().
| LogRecord alma::acs::exceptions::AcsJException::createSingleErrorTraceLogRecord | ( | ErrorTrace | et, | |
| String | stackID, | |||
| int | stackLevel | |||
| ) | [inline, package] |
Creates a LogRecord with the data from the given ErrorTrace object. Some data such as thread name, line of code, user-defined properties etc which do not correspond to any field of LogRecord are stored inside a Map that is set as a parameter of the LogRecord. Later when the ACS logging system will process this LogRecord, it will recognize the special data and turn them into the XML attributes of elements like <Debug>
| et | the ErrorTrace input object | |
| stackID | the stackID that must be the same for all linked ErrorTrace objects. | |
| stackLevel | 0-based index for LogRecords from an ErrorTrace chain. |
References alma::ACSErr::ErrorTrace::errorCode, alma::ACSErr::ErrorTrace::errorType, alma::ACSErr::ErrorTrace::file, alma::ACSErr::ErrorTrace::host, alma::ACSErr::ErrorTrace::lineNum, alma::ACSErr::ErrorTrace::routine, alma::ACSErr::ErrorTrace::severity, alma::ACSErr::ErrorTrace::shortDescription, alma::ACSErr::ErrorTrace::sourceObject, alma::ACSErr::ErrorTrace::thread, and alma::ACSErr::ErrorTrace::timeStamp.
Referenced by log().
| ACSException alma::acs::exceptions::AcsJException::getACSException | ( | ) | [inline] |
Creates an ACSException. Typically to be called from a top-level catch block that must convert any of the Java exceptions used internally by the Java program to an IDL type exception that can be thrown on over CORBA.
ACSException should no longer be used since the new error framework generates type-safe corba exceptions with an ErrorTrace inside. References getErrorTrace().
Referenced by alma::demo::LampCallbackImpl::LampCallbackImpl::acsExceptionMethodVoid(), and alma::acs::exceptions::DefaultAcsJException::toCorbaException().
| abstract int alma::acs::exceptions::AcsJException::getErrorCode | ( | ) | [protected, pure virtual] |
Forces a subclass to choose an ACS error code.
Implemented in alma::acs::callbacks::Objects::MyAcsJException, alma::acs::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx, alma::ACSBulkDataError::wrappers::AcsJAVCDBTimeoutErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx, alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowNumbersNotMatchingErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVInitErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVInvalidFlowNumberEx, alma::ACSBulkDataError::wrappers::AcsJAVNotificationMechanismErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVObjectNotFoundEx, alma::ACSBulkDataError::wrappers::AcsJAVOpenReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVPaceDataErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVProtocolErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVReceiverConfigErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSendFrameErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverNameErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStartSendErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStopSendErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStreamBindErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStreamEndpointErrorEx, alma::ACSBulkDataStatus::wrappers::AcsJAVCbErrorEx, alma::acsdaemonErrType::wrappers::AcsJAcsStartServicesEx, alma::acsdaemonErrType::wrappers::AcsJBadArgumentsEx, alma::acsdaemonErrType::wrappers::AcsJCannotCreateInstanceEx, alma::acsdaemonErrType::wrappers::AcsJCannotUseInstanceEx, alma::acsdaemonErrType::wrappers::AcsJFailedToGetAcsStatusEx, alma::acsdaemonErrType::wrappers::AcsJFailedToProcessRequestEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStartContainerEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStopAcsEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStopContainerEx, alma::acsdaemonErrType::wrappers::AcsJPortInUseEx, alma::acsdaemonErrType::wrappers::AcsJProcessingAbortedEx, alma::acsdaemonErrType::wrappers::AcsJRequestProcessingTimedOutEx, alma::acsdaemonErrType::wrappers::AcsJServiceAlreadyRunningEx, alma::acsdaemonErrType::wrappers::AcsJServiceNotRunningEx, alma::ACSErrTICS::wrappers::AcsJAnyTICSErrorEx, alma::ACSErrTicsTCorr::wrappers::AcsJAnyTICSTCorrErrorEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJACSASFactoryNotInitedEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorGettingDALEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorLoadingCERNDLLEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJFaultStateCreationErrorEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJInavalidManagerEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJSourceCreationErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx, alma::ACSErrTypeCommon::wrappers::AcsJCannotLoadEx, alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessComponentEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessPropertyEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateObjectEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateThreadEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntPerformActionEx, alma::ACSErrTypeCommon::wrappers::AcsJFileNotFoundEx, alma::ACSErrTypeCommon::wrappers::AcsJGenericErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx, alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx, alma::ACSErrTypeCommon::wrappers::AcsJIOErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJMemoryFaultEx, alma::ACSErrTypeCommon::wrappers::AcsJNoResourcesEx, alma::ACSErrTypeCommon::wrappers::AcsJNotImplementedEx, alma::ACSErrTypeCommon::wrappers::AcsJNotInitializedEx, alma::ACSErrTypeCommon::wrappers::AcsJNullPointerEx, alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx, alma::ACSErrTypeCommon::wrappers::AcsJParsingXMLProblemEx, alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx, alma::ACSErrTypeCommon::wrappers::AcsJTypeNotSupportedEx, alma::ACSErrTypeCommon::wrappers::AcsJUnexpectedExceptionEx, alma::ACSErrTypeCommon::wrappers::AcsJUnknownEx, alma::acsErrTypeComponent::wrappers::AcsJInvalidContainerServicesEx, alma::acsErrTypeContainerServices::wrappers::AcsJCanNotGetCDBEx, alma::acsErrTypeContainerServices::wrappers::AcsJGettingCompInfoEx, alma::acsErrTypeContainerServices::wrappers::AcsJOffShootDeactivationEx, alma::acsErrTypeContainerServices::wrappers::AcsJOffShootPOAEx, alma::ACSErrTypeCORBA::wrappers::AcsJCORBAReferenceNilEx, alma::ACSErrTypeCORBA::wrappers::AcsJFailedToResolveServiceEx, alma::ACSErrTypeCORBA::wrappers::AcsJNarrowFailedEx, alma::ACSErrTypeCppNative::wrappers::AcsJCppAnyEx, alma::ACSErrTypeDevIO::wrappers::AcsJReadErrorEx, alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedReadEx, alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx, alma::ACSErrTypeDevIO::wrappers::AcsJWriteErrorEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJava3edPartyLibEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJavaAnyEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJavaLangEx, alma::acsErrTypeLifeCycle::wrappers::AcsJLifeCycleEx, alma::acsErrTypeLifeCycle::wrappers::AcsJStartingThreadsFailureEx, alma::acsErrTypeLifeCycle::wrappers::AcsJStoppingThreadsFailureEx, alma::acsErrTypeLifeCycle::wrappers::AcsJWrongInitialStateEx, alma::ACSErrTypeMonitor::wrappers::AcsJACSErrMonitorErrorEx, alma::ACSErrTypePythonNative::wrappers::AcsJPythonEx, alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx, alma::acsncErrType::wrappers::AcsJPublishEventFailureEx, alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx, alma::acsQoSErrType::wrappers::AcsJCanNotResetTimeoutEx, alma::acsQoSErrType::wrappers::AcsJCanNotSetTimeoutEx, alma::ACSTimeError::wrappers::AcsJArgErrorEx, alma::ACSTimeError::wrappers::AcsJInvalidIDEx, alma::ACSTimeError::wrappers::AcsJOverflowOrUnderflowEx, alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnavailableEx, alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnexpectedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeLockedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeUnavailableEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeUnlockedEx, alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx, alma::baciErrTypeDevIO::wrappers::AcsJReadErrorEx, alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedReadEx, alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx, alma::baciErrTypeDevIO::wrappers::AcsJWriteErrorEx, alma::baciErrTypeProperty::wrappers::AcsJArchiveMonitorProblemEx, alma::baciErrTypeProperty::wrappers::AcsJCanNotGetValueEx, alma::baciErrTypeProperty::wrappers::AcsJCanNotSetValueEx, alma::baciErrTypeProperty::wrappers::AcsJDecrementErrorEx, alma::baciErrTypeProperty::wrappers::AcsJIncrementErrorEx, alma::baciErrTypeProperty::wrappers::AcsJInvokeActionErrorEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyActivationEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyCreationEx, alma::baciErrTypeProperty::wrappers::AcsJPropertySetInitValueEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyStaticDataEx, alma::cdbErrType::wrappers::AcsJCDBExceptionEx, alma::cdbErrType::wrappers::AcsJCDBFieldDoesNotExistEx, alma::cdbErrType::wrappers::AcsJCDBFieldIsReadOnlyEx, alma::cdbErrType::wrappers::AcsJCDBReadoOnlyDataEx, alma::cdbErrType::wrappers::AcsJCDBRecordAlreadyExistsEx, alma::cdbErrType::wrappers::AcsJCDBRecordDoesNotExistEx, alma::cdbErrType::wrappers::AcsJCDBRecordIsReadOnlyEx, alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx, alma::cdbErrType::wrappers::AcsJCouldntReadCDBEx, alma::cdbErrType::wrappers::AcsJCouldntWriteCDBEx, alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx, alma::ErrorSystemExample::wrappers::AcsJNothingCanBeScheduledErrorEx, alma::ErrorSystemExample::wrappers::AcsJPipelineProcessingRequestErrorEx, alma::JavaContainerError::wrappers::AcsJContainerEx, alma::JavaContainerError::wrappers::AcsJContainerServicesEx, alma::JavaContainerError::wrappers::AcsJJavaComponentHelperEx, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest1Ex, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest2Ex, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest3Ex, alma::JContExmplErrTypeTest::wrappers::AcsJXmlComponentErrorEx, alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx, alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx, alma::maciErrType::wrappers::AcsJCannotActivateComponentEx, alma::maciErrType::wrappers::AcsJCannotDeactivateComponentEx, alma::maciErrType::wrappers::AcsJCannotGetComponentEx, alma::maciErrType::wrappers::AcsJCannotGetServiceEx, alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx, alma::maciErrType::wrappers::AcsJCannotReleaseComponentEx, alma::maciErrType::wrappers::AcsJCannotRestartComponentEx, alma::maciErrType::wrappers::AcsJCannotUnregisterComponentEx, alma::maciErrType::wrappers::AcsJComponentConfigurationNotFoundEx, alma::maciErrType::wrappers::AcsJComponentCreationEx, alma::maciErrType::wrappers::AcsJComponentNotAlreadyActivatedEx, alma::maciErrType::wrappers::AcsJComponentNotInUseEx, alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx, alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx, alma::maciErrType::wrappers::AcsJInvalidComponentSpecEx, alma::maciErrType::wrappers::AcsJLoggerDoesNotExistEx, alma::maciErrType::wrappers::AcsJNoDefaultComponentEx, alma::maciErrType::wrappers::AcsJNoPermissionEx, and alma::taskErrType::wrappers::AcsJTaskRunFailureEx.
Referenced by createSingleErrorTrace(), and alma::acs::exceptions::AcsJCompletion::init().
| ErrorTrace alma::acs::exceptions::AcsJException::getErrorTrace | ( | ) | [inline] |
Converts this exception (and all "caused-by" throwables it might have) to an ErrorTrace that links to its caused-by ErrorTrace objects.
To be used whenever the Corba wall is hit and the Java exception must be converted to an ACS-Corba-exception.
References m_initialized, m_timeMilli, and recursiveGetErrorTrace().
Referenced by alma::ACS::jbaci::CompletionUtil::generateCompletion(), getACSException(), alma::acs::exceptions::AcsJExceptionTest::testGetErrorTrace(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJACSASFactoryNotInitedEx::toACSASFactoryNotInitedEx(), alma::ACSBulkDataError::wrappers::AcsJACSBulkDataErrorEx::toACSBulkDataErrorEx(), alma::ACSBulkDataStatus::wrappers::AcsJACSBulkDataStatusEx::toACSBulkDataStatusEx(), alma::acsdaemonErrType::wrappers::AcsJacsdaemonErrTypeEx::toacsdaemonErrTypeEx(), alma::ACSErrTypeMonitor::wrappers::AcsJACSErrMonitorErrorEx::toACSErrMonitorErrorEx(), alma::ACSErrTICS::wrappers::AcsJACSErrTICSEx::toACSErrTICSEx(), alma::ACSErrTicsTCorr::wrappers::AcsJACSErrTicsTCorrEx::toACSErrTicsTCorrEx(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJacsErrTypeAlarmSourceFactoryEx::toacsErrTypeAlarmSourceFactoryEx(), alma::ACSErrTypeCommon::wrappers::AcsJACSErrTypeCommonEx::toACSErrTypeCommonEx(), alma::acsErrTypeComponent::wrappers::AcsJacsErrTypeComponentEx::toacsErrTypeComponentEx(), alma::acsErrTypeContainerServices::wrappers::AcsJacsErrTypeContainerServicesEx::toacsErrTypeContainerServicesEx(), alma::ACSErrTypeCORBA::wrappers::AcsJACSErrTypeCORBAEx::toACSErrTypeCORBAEx(), alma::ACSErrTypeCppNative::wrappers::AcsJACSErrTypeCppNativeEx::toACSErrTypeCppNativeEx(), alma::ACSErrTypeDevIO::wrappers::AcsJACSErrTypeDevIOEx::toACSErrTypeDevIOEx(), alma::ACSErrTypeJavaNative::wrappers::AcsJACSErrTypeJavaNativeEx::toACSErrTypeJavaNativeEx(), alma::acsErrTypeLifeCycle::wrappers::AcsJacsErrTypeLifeCycleEx::toacsErrTypeLifeCycleEx(), alma::ACSErrTypeMonitor::wrappers::AcsJACSErrTypeMonitorEx::toACSErrTypeMonitorEx(), alma::ACSErrTypePythonNative::wrappers::AcsJACSErrTypePythonNativeEx::toACSErrTypePythonNativeEx(), alma::acsncErrType::wrappers::AcsJacsncErrTypeEx::toacsncErrTypeEx(), alma::acsQoSErrType::wrappers::AcsJacsQoSErrTypeEx::toacsQoSErrTypeEx(), alma::acsdaemonErrType::wrappers::AcsJAcsStartServicesEx::toAcsStartServicesEx(), alma::ACSTimeError::wrappers::AcsJACSTimeErrorEx::toACSTimeErrorEx(), alma::ACSErrTICS::wrappers::AcsJAnyTICSErrorEx::toAnyTICSErrorEx(), alma::ACSErrTicsTCorr::wrappers::AcsJAnyTICSTCorrErrorEx::toAnyTICSTCorrErrorEx(), alma::ArchiveIdentifierError::wrappers::AcsJArchiveIdentifierErrorEx::toArchiveIdentifierErrorEx(), alma::baciErrTypeProperty::wrappers::AcsJArchiveMonitorProblemEx::toArchiveMonitorProblemEx(), alma::ACSTimeError::wrappers::AcsJArgErrorEx::toArgErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx::toAVCallbackErrorEx(), alma::ACSBulkDataStatus::wrappers::AcsJAVCbErrorEx::toAVCbErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx::toAVCbFlowTimeoutEx(), alma::ACSBulkDataError::wrappers::AcsJAVCDBTimeoutErrorEx::toAVCDBTimeoutErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx::toAVCloseReceiverErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx::toAVConnectErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx::toAVCouldNotOpenFileEx(), alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx::toAVDisconnectErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx::toAVFlowEndpointErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVFlowNumbersNotMatchingErrorEx::toAVFlowNumbersNotMatchingErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVInitErrorEx::toAVInitErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVInvalidFlowNumberEx::toAVInvalidFlowNumberEx(), alma::ACSBulkDataError::wrappers::AcsJAVNotificationMechanismErrorEx::toAVNotificationMechanismErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVObjectNotFoundEx::toAVObjectNotFoundEx(), alma::ACSBulkDataError::wrappers::AcsJAVOpenReceiverErrorEx::toAVOpenReceiverErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVPaceDataErrorEx::toAVPaceDataErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVProtocolErrorEx::toAVProtocolErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVReceiverConfigErrorEx::toAVReceiverConfigErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVSendFrameErrorEx::toAVSendFrameErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverErrorEx::toAVSetReceiverErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverNameErrorEx::toAVSetReceiverNameErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVStartSendErrorEx::toAVStartSendErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVStopSendErrorEx::toAVStopSendErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVStreamBindErrorEx::toAVStreamBindErrorEx(), alma::ACSBulkDataError::wrappers::AcsJAVStreamEndpointErrorEx::toAVStreamEndpointErrorEx(), alma::baciErrTypeDevIO::wrappers::AcsJbaciErrTypeDevIOEx::tobaciErrTypeDevIOEx(), alma::baciErrTypeProperty::wrappers::AcsJbaciErrTypePropertyEx::tobaciErrTypePropertyEx(), alma::acsdaemonErrType::wrappers::AcsJBadArgumentsEx::toBadArgumentsEx(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::toBadParameterEx(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::toCannotActivateComponentEx(), alma::acsdaemonErrType::wrappers::AcsJCannotCreateInstanceEx::toCannotCreateInstanceEx(), alma::maciErrType::wrappers::AcsJCannotDeactivateComponentEx::toCannotDeactivateComponentEx(), alma::acsErrTypeContainerServices::wrappers::AcsJCanNotGetCDBEx::toCanNotGetCDBEx(), alma::maciErrType::wrappers::AcsJCannotGetComponentEx::toCannotGetComponentEx(), alma::maciErrType::wrappers::AcsJCannotGetServiceEx::toCannotGetServiceEx(), alma::baciErrTypeProperty::wrappers::AcsJCanNotGetValueEx::toCanNotGetValueEx(), alma::ACSErrTypeCommon::wrappers::AcsJCannotLoadEx::toCannotLoadEx(), alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx::toCannotRegisterComponentEx(), alma::maciErrType::wrappers::AcsJCannotReleaseComponentEx::toCannotReleaseComponentEx(), alma::acsQoSErrType::wrappers::AcsJCanNotResetTimeoutEx::toCanNotResetTimeoutEx(), alma::maciErrType::wrappers::AcsJCannotRestartComponentEx::toCannotRestartComponentEx(), alma::acsQoSErrType::wrappers::AcsJCanNotSetTimeoutEx::toCanNotSetTimeoutEx(), alma::baciErrTypeProperty::wrappers::AcsJCanNotSetValueEx::toCanNotSetValueEx(), alma::maciErrType::wrappers::AcsJCannotUnregisterComponentEx::toCannotUnregisterComponentEx(), alma::acsdaemonErrType::wrappers::AcsJCannotUseInstanceEx::toCannotUseInstanceEx(), alma::cdbErrType::wrappers::AcsJcdbErrTypeEx::tocdbErrTypeEx(), alma::cdbErrType::wrappers::AcsJCDBExceptionEx::toCDBExceptionEx(), alma::cdbErrType::wrappers::AcsJCDBFieldDoesNotExistEx::toCDBFieldDoesNotExistEx(), alma::cdbErrType::wrappers::AcsJCDBFieldIsReadOnlyEx::toCDBFieldIsReadOnlyEx(), alma::cdbErrType::wrappers::AcsJCDBReadoOnlyDataEx::toCDBReadoOnlyDataEx(), alma::cdbErrType::wrappers::AcsJCDBRecordAlreadyExistsEx::toCDBRecordAlreadyExistsEx(), alma::cdbErrType::wrappers::AcsJCDBRecordDoesNotExistEx::toCDBRecordDoesNotExistEx(), alma::cdbErrType::wrappers::AcsJCDBRecordIsReadOnlyEx::toCDBRecordIsReadOnlyEx(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::toCDBXMLErrorEx(), alma::maciErrType::wrappers::AcsJComponentConfigurationNotFoundEx::toComponentConfigurationNotFoundEx(), alma::maciErrType::wrappers::AcsJComponentCreationEx::toComponentCreationEx(), alma::maciErrType::wrappers::AcsJComponentNotAlreadyActivatedEx::toComponentNotAlreadyActivatedEx(), alma::maciErrType::wrappers::AcsJComponentNotInUseEx::toComponentNotInUseEx(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::toComponentSpecIncompatibleWithActiveComponentEx(), alma::JavaContainerError::wrappers::AcsJContainerEx::toContainerEx(), alma::JavaContainerError::wrappers::AcsJContainerServicesEx::toContainerServicesEx(), alma::acs::exceptions::AcsJCompletion::toCorbaCompletion(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::toCORBAProblemEx(), alma::ACSErrTypeCORBA::wrappers::AcsJCORBAReferenceNilEx::toCORBAReferenceNilEx(), alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessComponentEx::toCouldntAccessComponentEx(), alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessPropertyEx::toCouldntAccessPropertyEx(), alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateObjectEx::toCouldntCreateObjectEx(), alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateThreadEx::toCouldntCreateThreadEx(), alma::ACSErrTypeCommon::wrappers::AcsJCouldntPerformActionEx::toCouldntPerformActionEx(), alma::cdbErrType::wrappers::AcsJCouldntReadCDBEx::toCouldntReadCDBEx(), alma::cdbErrType::wrappers::AcsJCouldntWriteCDBEx::toCouldntWriteCDBEx(), alma::ACSErrTypeCppNative::wrappers::AcsJCppAnyEx::toCppAnyEx(), alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx::toCyclicDependencyDetectedEx(), alma::baciErrTypeProperty::wrappers::AcsJDecrementErrorEx::toDecrementErrorEx(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorGettingDALEx::toErrorGettingDALEx(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorLoadingCERNDLLEx::toErrorLoadingCERNDLLEx(), alma::ErrorSystemExample::wrappers::AcsJErrorSystemExampleEx::toErrorSystemExampleEx(), alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::toEventSubscriptionFailureEx(), alma::acsdaemonErrType::wrappers::AcsJFailedToGetAcsStatusEx::toFailedToGetAcsStatusEx(), alma::acsdaemonErrType::wrappers::AcsJFailedToProcessRequestEx::toFailedToProcessRequestEx(), alma::ACSErrTypeCORBA::wrappers::AcsJFailedToResolveServiceEx::toFailedToResolveServiceEx(), alma::acsdaemonErrType::wrappers::AcsJFailedToStartContainerEx::toFailedToStartContainerEx(), alma::acsdaemonErrType::wrappers::AcsJFailedToStopAcsEx::toFailedToStopAcsEx(), alma::acsdaemonErrType::wrappers::AcsJFailedToStopContainerEx::toFailedToStopContainerEx(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJFaultStateCreationErrorEx::toFaultStateCreationErrorEx(), alma::ACSErrTypeCommon::wrappers::AcsJFileNotFoundEx::toFileNotFoundEx(), alma::ACSErrTypeCommon::wrappers::AcsJGenericErrorEx::toGenericErrorEx(), alma::acsErrTypeContainerServices::wrappers::AcsJGettingCompInfoEx::toGettingCompInfoEx(), alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnavailableEx::toIdentifierUnavailableEx(), alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnexpectedEx::toIdentifierUnexpectedEx(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::toIllegalArgumentEx(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx::toIllegalStateEventEx(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJInavalidManagerEx::toInavalidManagerEx(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::toIncompleteComponentSpecEx(), alma::baciErrTypeProperty::wrappers::AcsJIncrementErrorEx::toIncrementErrorEx(), alma::maciErrType::wrappers::AcsJInvalidComponentSpecEx::toInvalidComponentSpecEx(), alma::acsErrTypeComponent::wrappers::AcsJInvalidContainerServicesEx::toInvalidContainerServicesEx(), alma::ACSTimeError::wrappers::AcsJInvalidIDEx::toInvalidIDEx(), alma::baciErrTypeProperty::wrappers::AcsJInvokeActionErrorEx::toInvokeActionErrorEx(), alma::ACSErrTypeCommon::wrappers::AcsJIOErrorEx::toIOErrorEx(), alma::ACSErrTypeJavaNative::wrappers::AcsJJava3edPartyLibEx::toJava3edPartyLibEx(), alma::ACSErrTypeJavaNative::wrappers::AcsJJavaAnyEx::toJavaAnyEx(), alma::JavaContainerError::wrappers::AcsJJavaComponentHelperEx::toJavaComponentHelperEx(), alma::JavaContainerError::wrappers::AcsJJavaContainerErrorEx::toJavaContainerErrorEx(), alma::ACSErrTypeJavaNative::wrappers::AcsJJavaLangEx::toJavaLangEx(), alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest1Ex::toJContExmplErrTest1Ex(), alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest2Ex::toJContExmplErrTest2Ex(), alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest3Ex::toJContExmplErrTest3Ex(), alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTypeTestEx::toJContExmplErrTypeTestEx(), alma::jmanagerErrType::wrappers::AcsJjmanagerErrTypeEx::tojmanagerErrTypeEx(), alma::acsErrTypeLifeCycle::wrappers::AcsJLifeCycleEx::toLifeCycleEx(), alma::maciErrType::wrappers::AcsJLoggerDoesNotExistEx::toLoggerDoesNotExistEx(), alma::maciErrType::wrappers::AcsJmaciErrTypeEx::tomaciErrTypeEx(), alma::ACSErrTypeCommon::wrappers::AcsJMemoryFaultEx::toMemoryFaultEx(), alma::ACSErrTypeCORBA::wrappers::AcsJNarrowFailedEx::toNarrowFailedEx(), alma::maciErrType::wrappers::AcsJNoDefaultComponentEx::toNoDefaultComponentEx(), alma::maciErrType::wrappers::AcsJNoPermissionEx::toNoPermissionEx(), alma::ACSErrTypeCommon::wrappers::AcsJNoResourcesEx::toNoResourcesEx(), alma::ErrorSystemExample::wrappers::AcsJNothingCanBeScheduledErrorEx::toNothingCanBeScheduledErrorEx(), alma::ACSErrTypeCommon::wrappers::AcsJNotImplementedEx::toNotImplementedEx(), alma::ACSErrTypeCommon::wrappers::AcsJNotInitializedEx::toNotInitializedEx(), alma::ACSErrTypeCommon::wrappers::AcsJNullPointerEx::toNullPointerEx(), alma::acsErrTypeContainerServices::wrappers::AcsJOffShootDeactivationEx::toOffShootDeactivationEx(), alma::acsErrTypeContainerServices::wrappers::AcsJOffShootPOAEx::toOffShootPOAEx(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::toOutOfBoundsEx(), alma::ACSTimeError::wrappers::AcsJOverflowOrUnderflowEx::toOverflowOrUnderflowEx(), alma::ACSErrTypeCommon::wrappers::AcsJParsingXMLProblemEx::toParsingXMLProblemEx(), alma::ErrorSystemExample::wrappers::AcsJPipelineProcessingRequestErrorEx::toPipelineProcessingRequestErrorEx(), alma::acsdaemonErrType::wrappers::AcsJPortInUseEx::toPortInUseEx(), alma::acsdaemonErrType::wrappers::AcsJProcessingAbortedEx::toProcessingAbortedEx(), alma::baciErrTypeProperty::wrappers::AcsJPropertyActivationEx::toPropertyActivationEx(), alma::baciErrTypeProperty::wrappers::AcsJPropertyCreationEx::toPropertyCreationEx(), alma::baciErrTypeProperty::wrappers::AcsJPropertySetInitValueEx::toPropertySetInitValueEx(), alma::baciErrTypeProperty::wrappers::AcsJPropertyStaticDataEx::toPropertyStaticDataEx(), alma::acsncErrType::wrappers::AcsJPublishEventFailureEx::toPublishEventFailureEx(), alma::ACSErrTypePythonNative::wrappers::AcsJPythonEx::toPythonEx(), alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx::toRangeExhaustedEx(), alma::ArchiveIdentifierError::wrappers::AcsJRangeLockedEx::toRangeLockedEx(), alma::ArchiveIdentifierError::wrappers::AcsJRangeUnavailableEx::toRangeUnavailableEx(), alma::ArchiveIdentifierError::wrappers::AcsJRangeUnlockedEx::toRangeUnlockedEx(), alma::baciErrTypeDevIO::wrappers::AcsJReadErrorEx::toReadErrorEx(), alma::ACSErrTypeDevIO::wrappers::AcsJReadErrorEx::toReadErrorEx(), alma::acsdaemonErrType::wrappers::AcsJRequestProcessingTimedOutEx::toRequestProcessingTimedOutEx(), alma::acsdaemonErrType::wrappers::AcsJServiceAlreadyRunningEx::toServiceAlreadyRunningEx(), alma::acsdaemonErrType::wrappers::AcsJServiceNotRunningEx::toServiceNotRunningEx(), alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJSourceCreationErrorEx::toSourceCreationErrorEx(), alma::acsErrTypeLifeCycle::wrappers::AcsJStartingThreadsFailureEx::toStartingThreadsFailureEx(), alma::acsErrTypeLifeCycle::wrappers::AcsJStoppingThreadsFailureEx::toStoppingThreadsFailureEx(), alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx::toSyncLockFailedEx(), alma::taskErrType::wrappers::AcsJtaskErrTypeEx::totaskErrTypeEx(), alma::taskErrType::wrappers::AcsJTaskRunFailureEx::toTaskRunFailureEx(), alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::toTypeNotFoundEx(), alma::ACSErrTypeCommon::wrappers::AcsJTypeNotSupportedEx::toTypeNotSupportedEx(), alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx::toUidAlreadyExistsEx(), alma::ACSErrTypeCommon::wrappers::AcsJUnexpectedExceptionEx::toUnexpectedExceptionEx(), alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedReadEx::toUnimplementedReadEx(), alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedReadEx::toUnimplementedReadEx(), alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx::toUnimplementedWriteEx(), alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx::toUnimplementedWriteEx(), alma::ACSErrTypeCommon::wrappers::AcsJUnknownEx::toUnknownEx(), alma::baciErrTypeDevIO::wrappers::AcsJWriteErrorEx::toWriteErrorEx(), alma::ACSErrTypeDevIO::wrappers::AcsJWriteErrorEx::toWriteErrorEx(), alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx::toWrongCDBDataTypeEx(), alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx::toWrongEventReceivedEx(), alma::acsErrTypeLifeCycle::wrappers::AcsJWrongInitialStateEx::toWrongInitialStateEx(), and alma::JContExmplErrTypeTest::wrappers::AcsJXmlComponentErrorEx::toXmlComponentErrorEx().
| abstract int alma::acs::exceptions::AcsJException::getErrorType | ( | ) | [protected, pure virtual] |
Forces a subclass to choose an ACS error type.
Implemented in alma::acs::callbacks::Objects::MyAcsJException, alma::acs::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJACSBulkDataErrorEx, alma::ACSBulkDataStatus::wrappers::AcsJACSBulkDataStatusEx, alma::acsdaemonErrType::wrappers::AcsJacsdaemonErrTypeEx, alma::ACSErrTICS::wrappers::AcsJACSErrTICSEx, alma::ACSErrTicsTCorr::wrappers::AcsJACSErrTicsTCorrEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJacsErrTypeAlarmSourceFactoryEx, alma::ACSErrTypeCommon::wrappers::AcsJACSErrTypeCommonEx, alma::acsErrTypeComponent::wrappers::AcsJacsErrTypeComponentEx, alma::acsErrTypeContainerServices::wrappers::AcsJacsErrTypeContainerServicesEx, alma::ACSErrTypeCORBA::wrappers::AcsJACSErrTypeCORBAEx, alma::ACSErrTypeCppNative::wrappers::AcsJACSErrTypeCppNativeEx, alma::ACSErrTypeDevIO::wrappers::AcsJACSErrTypeDevIOEx, alma::ACSErrTypeJavaNative::wrappers::AcsJACSErrTypeJavaNativeEx, alma::acsErrTypeLifeCycle::wrappers::AcsJacsErrTypeLifeCycleEx, alma::ACSErrTypeMonitor::wrappers::AcsJACSErrTypeMonitorEx, alma::ACSErrTypePythonNative::wrappers::AcsJACSErrTypePythonNativeEx, alma::acsncErrType::wrappers::AcsJacsncErrTypeEx, alma::acsQoSErrType::wrappers::AcsJacsQoSErrTypeEx, alma::ACSTimeError::wrappers::AcsJACSTimeErrorEx, alma::ArchiveIdentifierError::wrappers::AcsJArchiveIdentifierErrorEx, alma::baciErrTypeDevIO::wrappers::AcsJbaciErrTypeDevIOEx, alma::baciErrTypeProperty::wrappers::AcsJbaciErrTypePropertyEx, alma::cdbErrType::wrappers::AcsJcdbErrTypeEx, alma::ErrorSystemExample::wrappers::AcsJErrorSystemExampleEx, alma::JavaContainerError::wrappers::AcsJJavaContainerErrorEx, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTypeTestEx, alma::jmanagerErrType::wrappers::AcsJjmanagerErrTypeEx, alma::maciErrType::wrappers::AcsJmaciErrTypeEx, and alma::taskErrType::wrappers::AcsJtaskErrTypeEx.
Referenced by createSingleErrorTrace(), and alma::acs::exceptions::AcsJCompletion::init().
| String alma::acs::exceptions::AcsJException::getFile | ( | ) | [inline] |
References m_file.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx().
| String alma::acs::exceptions::AcsJException::getHost | ( | ) | [inline] |
References m_host.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx().
| int alma::acs::exceptions::AcsJException::getLine | ( | ) | [inline] |
References m_line.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx().
| String alma::acs::exceptions::AcsJException::getMethod | ( | ) | [inline] |
References m_method.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx().
| NameValue [] alma::acs::exceptions::AcsJException::getNameValueArray | ( | ) | [inline] |
To be used by getErrorTrace() or whoever else cares about a NameValue[].
References m_properties.
Referenced by createSingleErrorTrace().
| String alma::acs::exceptions::AcsJException::getProcess | ( | ) | [inline] |
References m_process.
| String alma::acs::exceptions::AcsJException::getProperty | ( | String | key | ) | [inline] |
References m_properties.
Referenced by alma::acs::container::AcsContainer::activate_component(), alma::acsncErrType::wrappers::AcsJPublishEventFailureEx::getChannelName(), alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::getChannelName(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::getCompletionStatus(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::getComponentCode(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::getComponentCode(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::getComponentCode(), alma::acsErrTypeLifeCycle::wrappers::AcsJWrongInitialStateEx::getComponentName(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::getComponentType(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::getComponentType(), alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx::getComponentType(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::getComponentType(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::getContainerName(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::getContainerName(), alma::JavaContainerError::wrappers::AcsJJavaComponentHelperEx::getContextInfo(), alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnexpectedEx::getContextInfo(), alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnavailableEx::getContextInfo(), alma::JavaContainerError::wrappers::AcsJContainerServicesEx::getContextInfo(), alma::JavaContainerError::wrappers::AcsJContainerEx::getContextInfo(), alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx::getCURL(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::getCURL(), alma::acsErrTypeContainerServices::wrappers::AcsJGettingCompInfoEx::getCURL(), alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx::getCURL(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJComponentNotInUseEx::getCURL(), alma::maciErrType::wrappers::AcsJComponentNotAlreadyActivatedEx::getCURL(), alma::maciErrType::wrappers::AcsJComponentCreationEx::getCURL(), alma::maciErrType::wrappers::AcsJComponentConfigurationNotFoundEx::getCURL(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::getCurl(), alma::cdbErrType::wrappers::AcsJCDBRecordIsReadOnlyEx::getCurl(), alma::cdbErrType::wrappers::AcsJCDBRecordDoesNotExistEx::getCurl(), alma::cdbErrType::wrappers::AcsJCDBRecordAlreadyExistsEx::getCurl(), alma::maciErrType::wrappers::AcsJCannotUnregisterComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotRestartComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotReleaseComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotGetServiceEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotGetComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotDeactivateComponentEx::getCURL(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::getCURL(), alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx::getDataType(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::getDetailedReason(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::getErrorDesc(), alma::ACSErrTypeCommon::wrappers::AcsJGenericErrorEx::getErrorDesc(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::getErrorString(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx::getEvent(), alma::acsncErrType::wrappers::AcsJPublishEventFailureEx::getEventName(), alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::getEventName(), alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx::getExpectedEvent(), alma::ACSErrTypeCommon::wrappers::AcsJNotImplementedEx::getFeature(), alma::cdbErrType::wrappers::AcsJCDBFieldIsReadOnlyEx::getFieldName(), alma::cdbErrType::wrappers::AcsJCDBFieldDoesNotExistEx::getFieldName(), alma::ACSErrTypeCommon::wrappers::AcsJFileNotFoundEx::getFileName(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::getFilename(), alma::maciErrType::wrappers::AcsJNoPermissionEx::getID(), alma::maciErrType::wrappers::AcsJNoDefaultComponentEx::getIDLType(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::getInfo(), alma::maciErrType::wrappers::AcsJLoggerDoesNotExistEx::getLoggerName(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::getMaxValue(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::getMinor(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::getMinValue(), alma::ACSErrTypeCommon::wrappers::AcsJNotInitializedEx::getName(), alma::ACSErrTypeCORBA::wrappers::AcsJNarrowFailedEx::getNarrowType(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::getNodename(), alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx::getObjectDesc(), alma::ACSErrTypeCommon::wrappers::AcsJCannotLoadEx::getObjectName(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::getParameter(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::getParameterValue(), alma::acs::exceptions::AcsJCompletion::getProperty(), alma::maciErrType::wrappers::AcsJNoPermissionEx::getProtectedResource(), alma::ArchiveIdentifierError::wrappers::AcsJRangeUnlockedEx::getRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeUnavailableEx::getRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeLockedEx::getRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx::getRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx::getRangeMaxDocumentId(), alma::maciErrType::wrappers::AcsJNoPermissionEx::getReason(), alma::maciErrType::wrappers::AcsJInvalidComponentSpecEx::getReason(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::getReason(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::getReason(), alma::maciErrType::wrappers::AcsJComponentCreationEx::getReason(), alma::maciErrType::wrappers::AcsJCannotGetComponentEx::getReason(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::getReason(), alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx::getReceivedEvent(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::getRequestedValue(), alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx::getRequestor(), alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx::getRequestor(), alma::acsdaemonErrType::wrappers::AcsJServiceAlreadyRunningEx::getService(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx::getState(), alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx::getUid(), alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx::getValue(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::getValue(), alma::ACSErrTypeCommon::wrappers::AcsJNullPointerEx::getVariable(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::getVariable(), alma::ACSErrTypeCORBA::wrappers::AcsJCORBAReferenceNilEx::getVariable(), alma::ACSErrTypeCommon::wrappers::AcsJParsingXMLProblemEx::getXML(), and alma::acs::exceptions::AcsJExceptionTest::testErrorTraceToAcsJExConversion().
| Severity alma::acs::exceptions::AcsJException::getSeverity | ( | ) | [inline] |
Returns the Severity level currently associated with this exception instance.
References m_severity.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx(), and createSingleErrorTrace().
| String alma::acs::exceptions::AcsJException::getShortDescription | ( | ) | [inline] |
Returns the short description which is a hardcoded text particular for a (type, code) combination. The subclass that represents the exception code will have to override this method. This method is not abstract because the exception class that corresponds to an error type (but not an error code) would otherwise have to overload it with returning an empty string.
Reimplemented in alma::acs::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx, alma::ACSBulkDataError::wrappers::AcsJAVCDBTimeoutErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx, alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowNumbersNotMatchingErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVInitErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVInvalidFlowNumberEx, alma::ACSBulkDataError::wrappers::AcsJAVNotificationMechanismErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVObjectNotFoundEx, alma::ACSBulkDataError::wrappers::AcsJAVOpenReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVPaceDataErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVProtocolErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVReceiverConfigErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSendFrameErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverNameErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStartSendErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStopSendErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStreamBindErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStreamEndpointErrorEx, alma::ACSBulkDataStatus::wrappers::AcsJAVCbErrorEx, alma::acsdaemonErrType::wrappers::AcsJAcsStartServicesEx, alma::acsdaemonErrType::wrappers::AcsJBadArgumentsEx, alma::acsdaemonErrType::wrappers::AcsJCannotCreateInstanceEx, alma::acsdaemonErrType::wrappers::AcsJCannotUseInstanceEx, alma::acsdaemonErrType::wrappers::AcsJFailedToGetAcsStatusEx, alma::acsdaemonErrType::wrappers::AcsJFailedToProcessRequestEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStartContainerEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStopAcsEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStopContainerEx, alma::acsdaemonErrType::wrappers::AcsJPortInUseEx, alma::acsdaemonErrType::wrappers::AcsJProcessingAbortedEx, alma::acsdaemonErrType::wrappers::AcsJRequestProcessingTimedOutEx, alma::acsdaemonErrType::wrappers::AcsJServiceAlreadyRunningEx, alma::acsdaemonErrType::wrappers::AcsJServiceNotRunningEx, alma::ACSErrTICS::wrappers::AcsJAnyTICSErrorEx, alma::ACSErrTicsTCorr::wrappers::AcsJAnyTICSTCorrErrorEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJACSASFactoryNotInitedEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorGettingDALEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorLoadingCERNDLLEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJFaultStateCreationErrorEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJInavalidManagerEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJSourceCreationErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx, alma::ACSErrTypeCommon::wrappers::AcsJCannotLoadEx, alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessComponentEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessPropertyEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateObjectEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateThreadEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntPerformActionEx, alma::ACSErrTypeCommon::wrappers::AcsJFileNotFoundEx, alma::ACSErrTypeCommon::wrappers::AcsJGenericErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx, alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx, alma::ACSErrTypeCommon::wrappers::AcsJIOErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJMemoryFaultEx, alma::ACSErrTypeCommon::wrappers::AcsJNoResourcesEx, alma::ACSErrTypeCommon::wrappers::AcsJNotImplementedEx, alma::ACSErrTypeCommon::wrappers::AcsJNotInitializedEx, alma::ACSErrTypeCommon::wrappers::AcsJNullPointerEx, alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx, alma::ACSErrTypeCommon::wrappers::AcsJParsingXMLProblemEx, alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx, alma::ACSErrTypeCommon::wrappers::AcsJTypeNotSupportedEx, alma::ACSErrTypeCommon::wrappers::AcsJUnexpectedExceptionEx, alma::ACSErrTypeCommon::wrappers::AcsJUnknownEx, alma::acsErrTypeComponent::wrappers::AcsJInvalidContainerServicesEx, alma::acsErrTypeContainerServices::wrappers::AcsJCanNotGetCDBEx, alma::acsErrTypeContainerServices::wrappers::AcsJGettingCompInfoEx, alma::acsErrTypeContainerServices::wrappers::AcsJOffShootDeactivationEx, alma::acsErrTypeContainerServices::wrappers::AcsJOffShootPOAEx, alma::ACSErrTypeCORBA::wrappers::AcsJCORBAReferenceNilEx, alma::ACSErrTypeCORBA::wrappers::AcsJFailedToResolveServiceEx, alma::ACSErrTypeCORBA::wrappers::AcsJNarrowFailedEx, alma::ACSErrTypeCppNative::wrappers::AcsJCppAnyEx, alma::ACSErrTypeDevIO::wrappers::AcsJReadErrorEx, alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedReadEx, alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx, alma::ACSErrTypeDevIO::wrappers::AcsJWriteErrorEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJava3edPartyLibEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJavaAnyEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJavaLangEx, alma::acsErrTypeLifeCycle::wrappers::AcsJLifeCycleEx, alma::acsErrTypeLifeCycle::wrappers::AcsJStartingThreadsFailureEx, alma::acsErrTypeLifeCycle::wrappers::AcsJStoppingThreadsFailureEx, alma::acsErrTypeLifeCycle::wrappers::AcsJWrongInitialStateEx, alma::ACSErrTypeMonitor::wrappers::AcsJACSErrMonitorErrorEx, alma::ACSErrTypePythonNative::wrappers::AcsJPythonEx, alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx, alma::acsncErrType::wrappers::AcsJPublishEventFailureEx, alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx, alma::acsQoSErrType::wrappers::AcsJCanNotResetTimeoutEx, alma::acsQoSErrType::wrappers::AcsJCanNotSetTimeoutEx, alma::ACSTimeError::wrappers::AcsJArgErrorEx, alma::ACSTimeError::wrappers::AcsJInvalidIDEx, alma::ACSTimeError::wrappers::AcsJOverflowOrUnderflowEx, alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnavailableEx, alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnexpectedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeLockedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeUnavailableEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeUnlockedEx, alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx, alma::baciErrTypeDevIO::wrappers::AcsJReadErrorEx, alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedReadEx, alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx, alma::baciErrTypeDevIO::wrappers::AcsJWriteErrorEx, alma::baciErrTypeProperty::wrappers::AcsJArchiveMonitorProblemEx, alma::baciErrTypeProperty::wrappers::AcsJCanNotGetValueEx, alma::baciErrTypeProperty::wrappers::AcsJCanNotSetValueEx, alma::baciErrTypeProperty::wrappers::AcsJDecrementErrorEx, alma::baciErrTypeProperty::wrappers::AcsJIncrementErrorEx, alma::baciErrTypeProperty::wrappers::AcsJInvokeActionErrorEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyActivationEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyCreationEx, alma::baciErrTypeProperty::wrappers::AcsJPropertySetInitValueEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyStaticDataEx, alma::cdbErrType::wrappers::AcsJCDBExceptionEx, alma::cdbErrType::wrappers::AcsJCDBFieldDoesNotExistEx, alma::cdbErrType::wrappers::AcsJCDBFieldIsReadOnlyEx, alma::cdbErrType::wrappers::AcsJCDBReadoOnlyDataEx, alma::cdbErrType::wrappers::AcsJCDBRecordAlreadyExistsEx, alma::cdbErrType::wrappers::AcsJCDBRecordDoesNotExistEx, alma::cdbErrType::wrappers::AcsJCDBRecordIsReadOnlyEx, alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx, alma::cdbErrType::wrappers::AcsJCouldntReadCDBEx, alma::cdbErrType::wrappers::AcsJCouldntWriteCDBEx, alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx, alma::ErrorSystemExample::wrappers::AcsJNothingCanBeScheduledErrorEx, alma::ErrorSystemExample::wrappers::AcsJPipelineProcessingRequestErrorEx, alma::JavaContainerError::wrappers::AcsJContainerEx, alma::JavaContainerError::wrappers::AcsJContainerServicesEx, alma::JavaContainerError::wrappers::AcsJJavaComponentHelperEx, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest1Ex, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest2Ex, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest3Ex, alma::JContExmplErrTypeTest::wrappers::AcsJXmlComponentErrorEx, alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx, alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx, alma::maciErrType::wrappers::AcsJCannotActivateComponentEx, alma::maciErrType::wrappers::AcsJCannotDeactivateComponentEx, alma::maciErrType::wrappers::AcsJCannotGetComponentEx, alma::maciErrType::wrappers::AcsJCannotGetServiceEx, alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx, alma::maciErrType::wrappers::AcsJCannotReleaseComponentEx, alma::maciErrType::wrappers::AcsJCannotRestartComponentEx, alma::maciErrType::wrappers::AcsJCannotUnregisterComponentEx, alma::maciErrType::wrappers::AcsJComponentConfigurationNotFoundEx, alma::maciErrType::wrappers::AcsJComponentCreationEx, alma::maciErrType::wrappers::AcsJComponentNotAlreadyActivatedEx, alma::maciErrType::wrappers::AcsJComponentNotInUseEx, alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx, alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx, alma::maciErrType::wrappers::AcsJInvalidComponentSpecEx, alma::maciErrType::wrappers::AcsJLoggerDoesNotExistEx, alma::maciErrType::wrappers::AcsJNoDefaultComponentEx, alma::maciErrType::wrappers::AcsJNoPermissionEx, and alma::taskErrType::wrappers::AcsJTaskRunFailureEx.
Referenced by createSingleErrorTrace().
| String alma::acs::exceptions::AcsJException::getSourceObject | ( | ) | [inline] |
References m_sourceObject.
| String alma::acs::exceptions::AcsJException::getThreadName | ( | ) | [inline] |
References m_threadName.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx().
| long alma::acs::exceptions::AcsJException::getTimestampMillis | ( | ) | [inline] |
Gets the timestamp when this exception was created.
References m_timeMilli.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx(), and alma::acs::exceptions::AcsJCompletion::init().
| int alma::acs::exceptions::AcsJException::getTraceDepth | ( | ) | [inline] |
Gets the total number of linked ("caused-by") exceptions including this one.
Not to be confused with the length of Throwable#getStackTrace(), which refers to the call stack for the current exception, and not to linked causing exception.
Referenced by alma::acs::exceptions::AcsJExceptionTest::checkWrapperAcsJEx(), log(), and alma::acs::exceptions::AcsJExceptionTest::testErrorTraceToAcsJExConversion().
| void alma::acs::exceptions::AcsJException::init | ( | ) | [inline, private] |
Initializes both static (if null) and non-static member variables. Only to be called once by all of the ctors.
todo: for caused-by exceptions that are constructed from their ErrorTrace representation, this method does not really need to be called; perhaps a new package-private ctor should be added which does not call init()
References m_file, m_host, m_initialized, m_line, m_method, m_process, m_properties, m_sourceObject, m_threadName, m_timeMilli, s_thisHost, s_thisProcess, and setSeverity().
Referenced by AcsJException().
| void alma::acs::exceptions::AcsJException::log | ( | Logger | logger | ) | [inline] |
Logs this exception and all causing exceptions. For each such exception, a separate log entry is created, in accordance with the ACS error logging specification.
| logger | the JDK logger to be used for logging this exception. |
References createSingleErrorTrace(), createSingleErrorTraceLogRecord(), getTraceDepth(), and m_timeMilli.
Referenced by com::cosylab::cdb::jdal::WDALImpl::add_node(), alma::demo::XmlComponentImpl::XmlComponentImpl::exceptionMethod(), com::cosylab::cdb::DALRead::main(), com::cosylab::cdb::CDBChangeDeployment::main(), alma::nctest::EventSupplierSpr2005067Impl::EventSupplierSpr2005067Impl::sendEvents(), alma::acsexmpl::clients::ErrorComponentTest::testBadMethod(), alma::acsexmpl::clients::ErrorComponentTest::testCompletionFromCompletion(), alma::acsexmpl::clients::ErrorComponentTest::testCompletionFromException(), alma::demo::client::XmlComponentClient::testException(), alma::acsexmpl::clients::ErrorComponentTest::testOutCompletion(), and alma::acsexmpl::clients::ErrorComponentTest::testReceiveCorbaSystemException().
| static ErrorTrace alma::acs::exceptions::AcsJException::recursiveGetErrorTrace | ( | Throwable | thr, | |
| long | defaultTimeMilli | |||
| ) | [inline, static, private] |
Translates a Throwable to an ErrorTrace.
If thr is a subclass of AcsJException, then the various data fields of the ErrorTrace object are properly filled. Otherwise defaults are used.
If thr has other Throwables chained up (see Throwable#getCause) then these will also be translated, and the resulting ErrorTrace objects will be linked together.
| thr |
References createSingleErrorTrace(), and alma::ACSErr::ErrorTrace::previousError.
Referenced by getErrorTrace().
| static void alma::acs::exceptions::AcsJException::setProcessName | ( | String | name | ) | [inline, static] |
If we have some better name than "java", for example the unique name of the java container.
| name |
References s_thisProcess.
| Object alma::acs::exceptions::AcsJException::setProperty | ( | String | key, | |
| String | value | |||
| ) | [inline] |
Allows extra information to be attached to the exception.
null if it did not have one. References m_properties.
Referenced by alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::getBlocks(), alma::contLogTest::TestLogLevelsCompImpl::TestLogLevelsCompImpl::getLevels(), alma::COUNTER::CounterSupplierImpl::CounterSupplierImpl::sendBlocks(), alma::acsncErrType::wrappers::AcsJPublishEventFailureEx::setChannelName(), alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::setChannelName(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::setCompletionStatus(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::setComponentCode(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::setComponentCode(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::setComponentCode(), alma::acsErrTypeLifeCycle::wrappers::AcsJWrongInitialStateEx::setComponentName(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::setComponentType(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::setComponentType(), alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx::setComponentType(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::setComponentType(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::setContainerName(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::setContainerName(), alma::JavaContainerError::wrappers::AcsJJavaComponentHelperEx::setContextInfo(), alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnexpectedEx::setContextInfo(), alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnavailableEx::setContextInfo(), alma::JavaContainerError::wrappers::AcsJContainerServicesEx::setContextInfo(), alma::JavaContainerError::wrappers::AcsJContainerEx::setContextInfo(), alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx::setCURL(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::setCURL(), alma::acsErrTypeContainerServices::wrappers::AcsJGettingCompInfoEx::setCURL(), alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx::setCURL(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJComponentNotInUseEx::setCURL(), alma::maciErrType::wrappers::AcsJComponentNotAlreadyActivatedEx::setCURL(), alma::maciErrType::wrappers::AcsJComponentCreationEx::setCURL(), alma::maciErrType::wrappers::AcsJComponentConfigurationNotFoundEx::setCURL(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::setCurl(), alma::cdbErrType::wrappers::AcsJCDBRecordIsReadOnlyEx::setCurl(), alma::cdbErrType::wrappers::AcsJCDBRecordDoesNotExistEx::setCurl(), alma::cdbErrType::wrappers::AcsJCDBRecordAlreadyExistsEx::setCurl(), alma::maciErrType::wrappers::AcsJCannotUnregisterComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotRestartComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotReleaseComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotGetServiceEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotGetComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotDeactivateComponentEx::setCURL(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::setCURL(), alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx::setDataType(), alma::maciErrType::wrappers::AcsJCannotActivateComponentEx::setDetailedReason(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::setErrorDesc(), alma::ACSErrTypeCommon::wrappers::AcsJGenericErrorEx::setErrorDesc(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::setErrorString(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx::setEvent(), alma::acsncErrType::wrappers::AcsJPublishEventFailureEx::setEventName(), alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx::setEventName(), alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx::setExpectedEvent(), alma::ACSErrTypeCommon::wrappers::AcsJNotImplementedEx::setFeature(), alma::cdbErrType::wrappers::AcsJCDBFieldIsReadOnlyEx::setFieldName(), alma::cdbErrType::wrappers::AcsJCDBFieldDoesNotExistEx::setFieldName(), alma::ACSErrTypeCommon::wrappers::AcsJFileNotFoundEx::setFileName(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::setFilename(), alma::maciErrType::wrappers::AcsJNoPermissionEx::setID(), alma::maciErrType::wrappers::AcsJNoDefaultComponentEx::setIDLType(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::setInfo(), alma::maciErrType::wrappers::AcsJLoggerDoesNotExistEx::setLoggerName(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::setMaxValue(), alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx::setMinor(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::setMinValue(), alma::ACSErrTypeCommon::wrappers::AcsJNotInitializedEx::setName(), alma::ACSErrTypeCORBA::wrappers::AcsJNarrowFailedEx::setNarrowType(), alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx::setNodename(), alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx::setObjectDesc(), alma::ACSErrTypeCommon::wrappers::AcsJCannotLoadEx::setObjectName(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::setParameter(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::setParameterValue(), alma::acs::exceptions::AcsJCompletion::setProperty(), alma::maciErrType::wrappers::AcsJNoPermissionEx::setProtectedResource(), alma::ArchiveIdentifierError::wrappers::AcsJRangeUnlockedEx::setRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeUnavailableEx::setRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeLockedEx::setRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx::setRange(), alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx::setRangeMaxDocumentId(), alma::maciErrType::wrappers::AcsJNoPermissionEx::setReason(), alma::maciErrType::wrappers::AcsJInvalidComponentSpecEx::setReason(), alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx::setReason(), alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx::setReason(), alma::maciErrType::wrappers::AcsJComponentCreationEx::setReason(), alma::maciErrType::wrappers::AcsJCannotGetComponentEx::setReason(), alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx::setReason(), alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx::setReceivedEvent(), alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx::setRequestedValue(), alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx::setRequestor(), alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx::setRequestor(), alma::acsdaemonErrType::wrappers::AcsJServiceAlreadyRunningEx::setService(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx::setState(), alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx::setUid(), alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx::setValue(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::setValue(), alma::ACSErrTypeCommon::wrappers::AcsJNullPointerEx::setVariable(), alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx::setVariable(), alma::ACSErrTypeCORBA::wrappers::AcsJCORBAReferenceNilEx::setVariable(), alma::ACSErrTypeCommon::wrappers::AcsJParsingXMLProblemEx::setXML(), and alma::COUNTER::CounterConsumerImpl::CounterConsumerImpl::waitTillDone().
| void alma::acs::exceptions::AcsJException::setSeverity | ( | ) | [inline] |
Sets the default severity level to Severity#Error. May be overridden by a subclass to set the default severity for that exception, or may be called from application code to set it for a specific exception instance.
References alma::ACSErr::Severity::Error, and m_severity.
Referenced by init().
| abstract UserException alma::acs::exceptions::AcsJException::toCorbaException | ( | ) | [pure virtual] |
Creates a CORBA UserException from this exception.
Subclasses must return their associated UserException with an ErrorTrace member.
By convention, subclasses must also implement another method that returns the correct subtype of UserException. No problem with a code generator of course...
Implemented in alma::acs::callbacks::Objects::MyAcsJException, alma::acs::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx, alma::ACSBulkDataError::wrappers::AcsJAVCDBTimeoutErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx, alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowNumbersNotMatchingErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVInitErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVInvalidFlowNumberEx, alma::ACSBulkDataError::wrappers::AcsJAVNotificationMechanismErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVObjectNotFoundEx, alma::ACSBulkDataError::wrappers::AcsJAVOpenReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVPaceDataErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVProtocolErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVReceiverConfigErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSendFrameErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVSetReceiverNameErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStartSendErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStopSendErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStreamBindErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVStreamEndpointErrorEx, alma::ACSBulkDataStatus::wrappers::AcsJAVCbErrorEx, alma::acsdaemonErrType::wrappers::AcsJAcsStartServicesEx, alma::acsdaemonErrType::wrappers::AcsJBadArgumentsEx, alma::acsdaemonErrType::wrappers::AcsJCannotCreateInstanceEx, alma::acsdaemonErrType::wrappers::AcsJCannotUseInstanceEx, alma::acsdaemonErrType::wrappers::AcsJFailedToGetAcsStatusEx, alma::acsdaemonErrType::wrappers::AcsJFailedToProcessRequestEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStartContainerEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStopAcsEx, alma::acsdaemonErrType::wrappers::AcsJFailedToStopContainerEx, alma::acsdaemonErrType::wrappers::AcsJPortInUseEx, alma::acsdaemonErrType::wrappers::AcsJProcessingAbortedEx, alma::acsdaemonErrType::wrappers::AcsJRequestProcessingTimedOutEx, alma::acsdaemonErrType::wrappers::AcsJServiceAlreadyRunningEx, alma::acsdaemonErrType::wrappers::AcsJServiceNotRunningEx, alma::ACSErrTICS::wrappers::AcsJAnyTICSErrorEx, alma::ACSErrTicsTCorr::wrappers::AcsJAnyTICSTCorrErrorEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJACSASFactoryNotInitedEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorGettingDALEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJErrorLoadingCERNDLLEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJFaultStateCreationErrorEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJInavalidManagerEx, alma::acsErrTypeAlarmSourceFactory::wrappers::AcsJSourceCreationErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJBadParameterEx, alma::ACSErrTypeCommon::wrappers::AcsJCannotLoadEx, alma::ACSErrTypeCommon::wrappers::AcsJCORBAProblemEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessComponentEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntAccessPropertyEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateObjectEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntCreateThreadEx, alma::ACSErrTypeCommon::wrappers::AcsJCouldntPerformActionEx, alma::ACSErrTypeCommon::wrappers::AcsJFileNotFoundEx, alma::ACSErrTypeCommon::wrappers::AcsJGenericErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJIllegalArgumentEx, alma::ACSErrTypeCommon::wrappers::AcsJIllegalStateEventEx, alma::ACSErrTypeCommon::wrappers::AcsJIOErrorEx, alma::ACSErrTypeCommon::wrappers::AcsJMemoryFaultEx, alma::ACSErrTypeCommon::wrappers::AcsJNoResourcesEx, alma::ACSErrTypeCommon::wrappers::AcsJNotImplementedEx, alma::ACSErrTypeCommon::wrappers::AcsJNotInitializedEx, alma::ACSErrTypeCommon::wrappers::AcsJNullPointerEx, alma::ACSErrTypeCommon::wrappers::AcsJOutOfBoundsEx, alma::ACSErrTypeCommon::wrappers::AcsJParsingXMLProblemEx, alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx, alma::ACSErrTypeCommon::wrappers::AcsJTypeNotSupportedEx, alma::ACSErrTypeCommon::wrappers::AcsJUnexpectedExceptionEx, alma::ACSErrTypeCommon::wrappers::AcsJUnknownEx, alma::acsErrTypeComponent::wrappers::AcsJInvalidContainerServicesEx, alma::acsErrTypeContainerServices::wrappers::AcsJCanNotGetCDBEx, alma::acsErrTypeContainerServices::wrappers::AcsJGettingCompInfoEx, alma::acsErrTypeContainerServices::wrappers::AcsJOffShootDeactivationEx, alma::acsErrTypeContainerServices::wrappers::AcsJOffShootPOAEx, alma::ACSErrTypeCORBA::wrappers::AcsJCORBAReferenceNilEx, alma::ACSErrTypeCORBA::wrappers::AcsJFailedToResolveServiceEx, alma::ACSErrTypeCORBA::wrappers::AcsJNarrowFailedEx, alma::ACSErrTypeCppNative::wrappers::AcsJCppAnyEx, alma::ACSErrTypeDevIO::wrappers::AcsJReadErrorEx, alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedReadEx, alma::ACSErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx, alma::ACSErrTypeDevIO::wrappers::AcsJWriteErrorEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJava3edPartyLibEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJavaAnyEx, alma::ACSErrTypeJavaNative::wrappers::AcsJJavaLangEx, alma::acsErrTypeLifeCycle::wrappers::AcsJLifeCycleEx, alma::acsErrTypeLifeCycle::wrappers::AcsJStartingThreadsFailureEx, alma::acsErrTypeLifeCycle::wrappers::AcsJStoppingThreadsFailureEx, alma::acsErrTypeLifeCycle::wrappers::AcsJWrongInitialStateEx, alma::ACSErrTypeMonitor::wrappers::AcsJACSErrMonitorErrorEx, alma::ACSErrTypePythonNative::wrappers::AcsJPythonEx, alma::acsncErrType::wrappers::AcsJEventSubscriptionFailureEx, alma::acsncErrType::wrappers::AcsJPublishEventFailureEx, alma::acsncErrType::wrappers::AcsJWrongEventReceivedEx, alma::acsQoSErrType::wrappers::AcsJCanNotResetTimeoutEx, alma::acsQoSErrType::wrappers::AcsJCanNotSetTimeoutEx, alma::ACSTimeError::wrappers::AcsJArgErrorEx, alma::ACSTimeError::wrappers::AcsJInvalidIDEx, alma::ACSTimeError::wrappers::AcsJOverflowOrUnderflowEx, alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnavailableEx, alma::ArchiveIdentifierError::wrappers::AcsJIdentifierUnexpectedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeExhaustedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeLockedEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeUnavailableEx, alma::ArchiveIdentifierError::wrappers::AcsJRangeUnlockedEx, alma::ArchiveIdentifierError::wrappers::AcsJUidAlreadyExistsEx, alma::baciErrTypeDevIO::wrappers::AcsJReadErrorEx, alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedReadEx, alma::baciErrTypeDevIO::wrappers::AcsJUnimplementedWriteEx, alma::baciErrTypeDevIO::wrappers::AcsJWriteErrorEx, alma::baciErrTypeProperty::wrappers::AcsJArchiveMonitorProblemEx, alma::baciErrTypeProperty::wrappers::AcsJCanNotGetValueEx, alma::baciErrTypeProperty::wrappers::AcsJCanNotSetValueEx, alma::baciErrTypeProperty::wrappers::AcsJDecrementErrorEx, alma::baciErrTypeProperty::wrappers::AcsJIncrementErrorEx, alma::baciErrTypeProperty::wrappers::AcsJInvokeActionErrorEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyActivationEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyCreationEx, alma::baciErrTypeProperty::wrappers::AcsJPropertySetInitValueEx, alma::baciErrTypeProperty::wrappers::AcsJPropertyStaticDataEx, alma::cdbErrType::wrappers::AcsJCDBExceptionEx, alma::cdbErrType::wrappers::AcsJCDBFieldDoesNotExistEx, alma::cdbErrType::wrappers::AcsJCDBFieldIsReadOnlyEx, alma::cdbErrType::wrappers::AcsJCDBReadoOnlyDataEx, alma::cdbErrType::wrappers::AcsJCDBRecordAlreadyExistsEx, alma::cdbErrType::wrappers::AcsJCDBRecordDoesNotExistEx, alma::cdbErrType::wrappers::AcsJCDBRecordIsReadOnlyEx, alma::cdbErrType::wrappers::AcsJCDBXMLErrorEx, alma::cdbErrType::wrappers::AcsJCouldntReadCDBEx, alma::cdbErrType::wrappers::AcsJCouldntWriteCDBEx, alma::cdbErrType::wrappers::AcsJWrongCDBDataTypeEx, alma::ErrorSystemExample::wrappers::AcsJNothingCanBeScheduledErrorEx, alma::ErrorSystemExample::wrappers::AcsJPipelineProcessingRequestErrorEx, alma::JavaContainerError::wrappers::AcsJContainerEx, alma::JavaContainerError::wrappers::AcsJContainerServicesEx, alma::JavaContainerError::wrappers::AcsJJavaComponentHelperEx, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest1Ex, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest2Ex, alma::JContExmplErrTypeTest::wrappers::AcsJJContExmplErrTest3Ex, alma::JContExmplErrTypeTest::wrappers::AcsJXmlComponentErrorEx, alma::jmanagerErrType::wrappers::AcsJCyclicDependencyDetectedEx, alma::jmanagerErrType::wrappers::AcsJSyncLockFailedEx, alma::maciErrType::wrappers::AcsJCannotActivateComponentEx, alma::maciErrType::wrappers::AcsJCannotDeactivateComponentEx, alma::maciErrType::wrappers::AcsJCannotGetComponentEx, alma::maciErrType::wrappers::AcsJCannotGetServiceEx, alma::maciErrType::wrappers::AcsJCannotRegisterComponentEx, alma::maciErrType::wrappers::AcsJCannotReleaseComponentEx, alma::maciErrType::wrappers::AcsJCannotRestartComponentEx, alma::maciErrType::wrappers::AcsJCannotUnregisterComponentEx, alma::maciErrType::wrappers::AcsJComponentConfigurationNotFoundEx, alma::maciErrType::wrappers::AcsJComponentCreationEx, alma::maciErrType::wrappers::AcsJComponentNotAlreadyActivatedEx, alma::maciErrType::wrappers::AcsJComponentNotInUseEx, alma::maciErrType::wrappers::AcsJComponentSpecIncompatibleWithActiveComponentEx, alma::maciErrType::wrappers::AcsJIncompleteComponentSpecEx, alma::maciErrType::wrappers::AcsJInvalidComponentSpecEx, alma::maciErrType::wrappers::AcsJLoggerDoesNotExistEx, alma::maciErrType::wrappers::AcsJNoDefaultComponentEx, alma::maciErrType::wrappers::AcsJNoPermissionEx, and alma::taskErrType::wrappers::AcsJTaskRunFailureEx.
| String alma::acs::exceptions::AcsJException::toString | ( | ) | [inline] |
References m_properties.
Referenced by alma::ACS::MasterComponentImpl::StateChangeListener::logNotification(), com::cosylab::acs::maci::test::ManagerImplTest::testClientInfo(), com::cosylab::acs::maci::test::ManagerImplTest::testContainerInfo(), com::cosylab::acs::maci::test::ManagerImplTest::testContainerShutdown(), com::cosylab::acs::maci::test::ManagerImplTest::testForceReleaseComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testGetCollocatedComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testGetComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testGetCyclicHierachicalComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testGetDefaultComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testGetDynamicComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testLogin(), com::cosylab::acs::maci::test::ManagerImplTest::testLogout(), com::cosylab::acs::maci::test::ManagerImplTest::testMakeComponentMortal(), com::cosylab::acs::maci::test::ManagerImplTest::testOnDemandContainer(), com::cosylab::acs::maci::test::ManagerImplTest::testRegisterComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testReleaseComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testRestartComponent(), com::cosylab::acs::maci::test::ManagerImplTest::testShutdown(), and com::cosylab::acs::maci::test::ManagerImplTest::testUnregisterComponent().
String alma::acs::exceptions::AcsJException::m_file [protected] |
String alma::acs::exceptions::AcsJException::m_host [protected] |
boolean alma::acs::exceptions::AcsJException::m_initialized = false [private] |
Referenced by getErrorTrace(), and init().
int alma::acs::exceptions::AcsJException::m_line [protected] |
String alma::acs::exceptions::AcsJException::m_method [protected] |
String alma::acs::exceptions::AcsJException::m_process [protected] |
Properties alma::acs::exceptions::AcsJException::m_properties [protected] |
String alma::acs::exceptions::AcsJException::m_sourceObject [protected] |
Referenced by createSingleErrorTrace(), getSourceObject(), and init().
String alma::acs::exceptions::AcsJException::m_threadName [protected] |
long alma::acs::exceptions::AcsJException::m_timeMilli [protected] |
String alma::acs::exceptions::AcsJException::s_thisHost [static, private] |
Referenced by createSingleErrorTrace(), and init().
String alma::acs::exceptions::AcsJException::s_thisProcess [static, private] |
Referenced by createSingleErrorTrace(), init(), and setProcessName().
1.6.2