PowerBuilder · Exception
What does CORBASystemException System Exception mean in PowerBuilder?
Raised when a CORBA system-level exception is returned from an EAServer (Jaguar) component that a PowerBuilder client has invoked. Standard CORBA system exception types each map to a PowerBuilder class of the same name with underscores removed (e.g. CORBA_FREE_MEM maps to CORBAFreeMem), and all of them descend from CORBASystemException as an unchecked RuntimeError.
Raised when a CORBA system-level exception is returned from an EAServer (Jaguar) component that a PowerBuilder client has invoked. Standard CORBA system exception types each map to a PowerBuilder class of the same name with underscores removed (e.g. CORBA_FREE_MEM maps to CORBAFreeMem), and all of them descend from CORBASystemException as an unchecked RuntimeError.
Catch CORBASystemException (or a specific mapped subclass) around EAServer component calls instead of letting it propagate to SystemError, and inspect GetMessage() plus the component's server-side log together since the client-side text is often generic. Verify the EAServer component and client stubs are from matching versions when these appear after a server upgrade.