Salome HOME
Updated copyright comment
[modules/yacs.git] / src / runtime / NeutralCppConv.cxx
index fbebd123659a4cb6e614f3741f22b0ddd2ae0117..2b6799845e6770dc5f2e192e06270aa593f4f3f0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -47,7 +47,7 @@ namespace YACS
      *   transition method from const void* to Any*
      *   \param data : const void * data
      */
-    void NeutralCpp::put(const void *data) throw(ConversionException)
+    void NeutralCpp::put(const void *data)
     {
       put((Any *)data);
     }
@@ -56,7 +56,7 @@ namespace YACS
     /*!
      *   \param data : Any object
      */
-    void NeutralCpp::put(Any *data) throw(ConversionException)
+    void NeutralCpp::put(Any *data)
     {
       Any *a = convertNeutralCpp(edGetType(),data);
       DEBTRACE( "before put refcnt: " << a->getRefCnt() );