use of alma.ACSErr.ACSException in project ACS by ACS-Community.
the class DefaultAcsJException method toCorbaException.
/**
* Unlike other exception classes, this class does not correspond directly
* to an IDL defined type safe exception.
* Therefore, the returned UserException is an instance of
* <code>alma.ACSErr.ACSException</code>.
*
* @see alma.acs.exceptions.AcsJException#toCorbaException()
*/
public UserException toCorbaException() {
ErrorTrace et = getErrorTrace();
ACSException acsEx = new ACSException(et);
return acsEx;
}
Aggregations