Salome HOME
YACS in SSL mode
[modules/yacs.git] / src / runtime / PythonNeutralConv.cxx
index 77f716caf63dd3bb0a425e79a7c348c93c0f0d74..c4fa6395f4b674510a1570021aaa69d27f675077 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2015  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2021  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -36,7 +36,7 @@ PyNeutral::PyNeutral(InputPort* p)
 {
 }
 
-void PyNeutral::put(const void *data) throw(ConversionException)
+void PyNeutral::put(const void *data)
 {
   DEBTRACE( " PyNeutral::put(const void *data)" );
   put((PyObject *)data);
@@ -47,7 +47,7 @@ void PyNeutral::put(const void *data) throw(ConversionException)
   *   \param data : Python value
   */
 
-void PyNeutral::put(PyObject *data) throw(ConversionException)
+void PyNeutral::put(PyObject *data)
 {
   DEBTRACE( "PyNeutral::put " );
   YACS::ENGINE::Any *ob;