SystemExceptions...

Tom Haggie THaggie@img.seagatesoftware.com
Thu, 19 Feb 1998 04:41:00 -0800


I can't narrow a CORBA::Exception to a CORBA::SystemException,
I was wondering why this isn't possible?

try {
//...
} catch (CORBA::Exception& excep) {
	// Narrow exception
	CORBA::SystemException* sys_excep =
CORBA::SystemException::_narrow(&excep);
	//...
}

-*TOM*-