Unverified Commit d8ead43e authored by Andrea Orlati's avatar Andrea Orlati Committed by GitHub
Browse files

fix isse #664: not handled exception fixed (#666)

parent c1eecef4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -415,7 +415,9 @@ private:
	void unloadReceiver();

#ifdef COMPILE_TARGET_MED
	void setup(const char * code) throw(ComponentErrors::SocketErrorExImpl,ComponentErrors::ValidationErrorExImpl);
	void setup(const char * code) throw (ComponentErrors::SocketErrorExImpl,ComponentErrors::ValidationErrorExImpl,
  ComponentErrors::CORBAProblemExImpl,ComponentErrors::CouldntGetComponentExImpl,ComponentErrors::UnexpectedExImpl,
  ComponentErrors::OperationErrorExImpl);
	bool sendToRecvControl(const void *buffer,int size);
	bool sendToFS(const void *buffer,int size);

+3 −1
Original line number Diff line number Diff line
@@ -283,7 +283,9 @@ void CRecvBossCore::setLO(const ACS::doubleSeq& lo) throw (ComponentErrors::Vali
	IRA::CIRATools::Wait(0,500000);  //wait half a second to settle things down
}

void CRecvBossCore::setup(const char * code) throw (ComponentErrors::SocketErrorExImpl,ComponentErrors::ValidationErrorExImpl)
void CRecvBossCore::setup(const char * code) throw (ComponentErrors::SocketErrorExImpl,ComponentErrors::ValidationErrorExImpl,
  ComponentErrors::CORBAProblemExImpl,ComponentErrors::CouldntGetComponentExImpl,ComponentErrors::UnexpectedExImpl,
  ComponentErrors::OperationErrorExImpl)
{
	IRA::CError err;
	IRA::CString rec(code);