

Public Member Functions | |
| AcsJTypeNotFoundEx () | |
| AcsJTypeNotFoundEx (String message) | |
| AcsJTypeNotFoundEx (String message, Throwable cause) | |
| AcsJTypeNotFoundEx (Throwable cause) | |
| AcsJTypeNotFoundEx (ErrorTrace etCause) | |
| AcsJTypeNotFoundEx (String message, ErrorTrace etCause) | |
| String | getShortDescription () |
| UserException | toCorbaException () |
| TypeNotFoundEx | toTypeNotFoundEx () |
Static Public Member Functions | |
| static AcsJTypeNotFoundEx | fromTypeNotFoundEx (TypeNotFoundEx corbaEx) |
Protected Member Functions | |
| final int | getErrorCode () |
Java native style exception class representing the error type alma.ACSErr.ACSErrType.ACSErrTypeCommon, error code TypeNotFound.value.
| alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::AcsJTypeNotFoundEx | ( | ) | [inline] |
Referenced by fromTypeNotFoundEx().
| alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::AcsJTypeNotFoundEx | ( | String | message | ) | [inline] |
message should be given as parameters instead! | alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::AcsJTypeNotFoundEx | ( | String | message, | |
| Throwable | cause | |||
| ) | [inline] |
message should be given as parameters instead! | alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::AcsJTypeNotFoundEx | ( | Throwable | cause | ) | [inline] |
| alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::AcsJTypeNotFoundEx | ( | ErrorTrace | etCause | ) | [inline] |
| alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::AcsJTypeNotFoundEx | ( | String | message, | |
| ErrorTrace | etCause | |||
| ) | [inline] |
message should be given as parameters instead! | static AcsJTypeNotFoundEx alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::fromTypeNotFoundEx | ( | TypeNotFoundEx | corbaEx | ) | [inline, static] |
Converts a CORBA TypeNotFound to an instance of this class.
Note that unlike the constructor AcsJErrTest0Ex(ErrorTrace), this static conversion method does not wrap the existing chain of exceptions with a new exception. It simply converts all exceptions found in the ErrorTrace of corbaEx to the corresponding Java exceptions, knowing that the top level exception is of type TypeNotFound and can always be converted to AcsJTypeNotFoundEx.
Here's an example of how to use this method in a Java program that makes a call so some other component etc.:
private void methodThatMakesARemoteCall() throws AcsJTypeNotFoundEx { try { // this fakes the remote call to a method // which can throw an TypeNotFoundEx... throw new TypeNotFoundEx(); } catch (TypeNotFoundEx corbaEx) { throw AcsJTypeNotFoundEx.fromTypeNotFoundEx(corbaEx); } }
| corbaEx | the CORBA equivalent of this class; will be converted |
corbaEx. References AcsJTypeNotFoundEx(), and alma::ACSErrTypeCommon::TypeNotFoundEx::errorTrace.
| final int alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::getErrorCode | ( | ) | [inline, protected, virtual] |
Returns the error code, which is fixed to 11, given by TypeNotFound.value.
Implements alma::acs::exceptions::AcsJException.
| String alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::getShortDescription | ( | ) | [inline] |
Returns the short description of the error
Reimplemented from alma::acs::exceptions::AcsJException.
| UserException alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::toCorbaException | ( | ) | [inline, virtual] |
Implements alma::acs::exceptions::AcsJException.
References toTypeNotFoundEx().
| TypeNotFoundEx alma::ACSErrTypeCommon::wrappers::AcsJTypeNotFoundEx::toTypeNotFoundEx | ( | ) | [inline] |
Creates an TypeNotFound that represents this exception with all its caused-by child exceptions.
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.
org.omg.CORBA.UserException with an embedded ErrorTrace. References alma::acs::exceptions::AcsJException::getErrorTrace().
Referenced by toCorbaException().
1.6.2