Salome HOME
updated copyright message
[modules/yacs.git] / src / runtime / CORBACORBAConv.cxx
index bc0da407c060c1333b87c6e6b1c759379a1f3dbb..0208d16ce4f245811d252d4adff9d57c54de4181 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -34,7 +34,7 @@ CorbaCorba::CorbaCorba(InputCorbaPort* p)
  *   transition method from const void* to CORBA::Any*
  *   \param data : const void * data
  */
-void CorbaCorba::put(const void *data) throw(ConversionException)
+void CorbaCorba::put(const void *data)
 {
   put((CORBA::Any *)data);
 }
@@ -43,7 +43,7 @@ void CorbaCorba::put(const void *data) throw(ConversionException)
 /*!
  *   \param data : CORBA::Any object
  */
-void CorbaCorba::put(CORBA::Any *data) throw(ConversionException)
+void CorbaCorba::put(CORBA::Any *data)
 {
   CORBA::Any *a = convertCorbaCorba(edGetType(),data);
   _port->put(a);