From 6b6029858bb706c17c908901759a1e72bb9c67cb Mon Sep 17 00:00:00 2001 From: GERALD NICOLAS Date: Wed, 10 Feb 2021 18:00:43 +0100 Subject: [PATCH] =?utf8?q?Exceptions=20oubli=C3=A9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- idl/MG_ADAPT.idl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/idl/MG_ADAPT.idl b/idl/MG_ADAPT.idl index 59ca6a1fd..6a4c7c983 100644 --- a/idl/MG_ADAPT.idl +++ b/idl/MG_ADAPT.idl @@ -141,12 +141,12 @@ module SMESH{ typedef MG_ADAPT MG_ADAPT_HYPOTHESIS; interface MG_ADAPT_OBJECT : SALOME::GenericObj { - void setMeshIn(in SMESH_Mesh theMesh ); - void setMEDFileIn(in string f); - void setMEDFileOut(in string f); - void setMEDFileBackground(in string f); - void AddHypothesis(in MG_ADAPT mg); - long Compute(in boolean Publish); + void setMeshIn(in SMESH_Mesh theMesh ) raises (SALOME::SALOME_Exception); + void setMEDFileIn(in string f) raises (SALOME::SALOME_Exception); + void setMEDFileOut(in string f) raises (SALOME::SALOME_Exception); + void setMEDFileBackground(in string f) raises (SALOME::SALOME_Exception); + void AddHypothesis(in MG_ADAPT mg) raises (SALOME::SALOME_Exception); + long Compute(in boolean Publish) raises (SALOME::SALOME_Exception); }; }; -- 2.30.2