Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

alma::acs::exceptions::AcsJException Class Reference

Inheritance diagram for alma::acs::exceptions::AcsJException:

Inheritance graph
[legend]
List of all members.

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

void setProcessName (String name)
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

ErrorTrace recursiveGetErrorTrace (Throwable thr, long defaultTimeMilli)
void addExceptionProperties (Throwable thr, ErrorTrace et)

Private Attributes

boolean m_initialized = false

Static Private Attributes

String s_thisHost
String s_thisProcess

Detailed Description

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:

Author:
hsommer Jun 18, 2003 1:07:38 PM


Constructor & Destructor Documentation

alma::acs::exceptions::AcsJException::AcsJException  )  [inline]
 

alma::acs::exceptions::AcsJException::AcsJException String  message  )  [inline]
 

alma::acs::exceptions::AcsJException::AcsJException String  message,
Throwable  cause
[inline]
 

Constructor from another exception, with a message.

If cause is a CORBA exception generated by the ACS error system, then its ErrorTrace is automatically converted to a chain of AcsJ-style exceptions.

Parameters:
cause the causing exception
See also:
CorbaExceptionConverter::convertHiddenErrorTrace(Throwable)

alma::acs::exceptions::AcsJException::AcsJException ErrorTrace  etCause  )  [inline]
 

Constructor from another exception.

If cause is a CORBA exception generated by the ACS error system, then its ErrorTrace is automatically converted to a chain of AcsJ-style exceptions.

Parameters:
cause the causing exception
See also:
CorbaExceptionConverter::convertHiddenErrorTrace(Throwable)

alma::acs::exceptions::AcsJException::AcsJException String  message,
ErrorTrace  etCause
[inline]
 

Creates a new exception, with the chain of causing exceptions derived from etCause.

Parameters:
message 
etCause 


Member Function Documentation

void alma::acs::exceptions::AcsJException::addExceptionProperties Throwable  thr,
ErrorTrace  et
[inline, static, private]
 

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.

Parameters:
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.
See also:
createSingleErrorTrace()

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.

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>

Parameters:
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.
Returns:
the LogRecord that contains the data from the input parameters.

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.

Returns:
ACSException

Deprecated:
ACSException should no longer be used since the new error framework generates type-safe corba exceptions with an ErrorTrace inside.

abstract int alma::acs::exceptions::AcsJException::getErrorCode  )  [protected, pure virtual]
 

Forces a subclass to choose an ACS error code.

Returns:
the error code

Implemented in alma::acs::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx, alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx, alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx, 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.

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.

abstract int alma::acs::exceptions::AcsJException::getErrorType  )  [protected, pure virtual]
 

Forces a subclass to choose an ACS error type.

Returns:
the error type

Implemented in 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.

String alma::acs::exceptions::AcsJException::getFile  )  [inline]
 

Returns:
Returns the m_file.

String alma::acs::exceptions::AcsJException::getHost  )  [inline]
 

Returns:
Returns the m_host.

int alma::acs::exceptions::AcsJException::getLine  )  [inline]
 

Returns:
Returns the m_line.

String alma::acs::exceptions::AcsJException::getMethod  )  [inline]
 

Returns:
Returns the m_method.

NameValue [] alma::acs::exceptions::AcsJException::getNameValueArray  )  [inline]
 

To be used by getErrorTrace() or whoever else cares about a NameValue[].

String alma::acs::exceptions::AcsJException::getProcess  )  [inline]
 

Returns:
Returns the m_process.

String alma::acs::exceptions::AcsJException::getProperty String  key  )  [inline]
 

See also:
setProperty

Severity alma::acs::exceptions::AcsJException::getSeverity  )  [inline]
 

Returns the Severity level currently associated with this exception instance.

Returns:
Severity

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.

Returns:
an empty string, unless overloaded for an error code.

Reimplemented in alma::acs::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx, alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx, alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx, 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::getSourceObject  )  [inline]
 

Returns:
Returns the m_sourceObject.

String alma::acs::exceptions::AcsJException::getThreadName  )  [inline]
 

Returns:
Returns the m_threadName.

long alma::acs::exceptions::AcsJException::getTimestampMillis  )  [inline]
 

Gets the timestamp when this exception was created.

Returns:
timestamp in milliseconds (Java-UTC time, 1970)

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.

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()

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.

Parameters:
logger the JDK logger to be used for logging this exception.

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.

Parameters:
thr 
Returns:
ErrorTrace

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.

Parameters:
name 

Object alma::acs::exceptions::AcsJException::setProperty String  key,
String  value
[inline]
 

Allows extra information to be attached to the exception.

Returns:
the previous value of the specified key in this property list, or null if it did not have one.

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.

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::exceptions::DefaultAcsJException, alma::ACSBulkDataError::wrappers::AcsJAVCallbackErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCbFlowTimeoutEx, alma::ACSBulkDataError::wrappers::AcsJAVCloseReceiverErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVConnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVCouldNotOpenFileEx, alma::ACSBulkDataError::wrappers::AcsJAVDisconnectErrorEx, alma::ACSBulkDataError::wrappers::AcsJAVFlowEndpointErrorEx, 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]
 


Member Data Documentation

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]
 

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]
 

Severity alma::acs::exceptions::AcsJException::m_severity [protected]
 

String alma::acs::exceptions::AcsJException::m_sourceObject [protected]
 

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]
 

String alma::acs::exceptions::AcsJException::s_thisProcess [static, private]
 


The documentation for this class was generated from the following file:
Generated on Thu Apr 30 02:52:55 2009 for ACS Java API by doxygen 1.3.8