Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment