void NETGENPlugin_Hypothesis_i::SetLocalSizeOnShape(GEOM::GEOM_Object_ptr GeomObj,
CORBA::Double localSize)
- throw (SALOME::SALOME_Exception)
{
string entry;
entry = GeomObj->GetStudyEntry();
void SetChordalError(CORBA::Double value);
CORBA::Double GetChordalError();
- void SetLocalSizeOnShape(GEOM::GEOM_Object_ptr GeomObj, CORBA::Double localSize)
- throw (SALOME::SALOME_Exception);
+ void SetLocalSizeOnShape(GEOM::GEOM_Object_ptr GeomObj, CORBA::Double localSize);
void SetLocalSizeOnEntry(const char* entry, CORBA::Double localSize);
CORBA::Double GetLocalSizeOnEntry(const char* entry);
NETGENPlugin::string_array* GetLocalSizeEntries();
*
*/
//=============================================================================
-void NETGENPlugin_SimpleHypothesis_2D::SetNumberOfSegments(int nb) throw (SALOME_Exception)
+void NETGENPlugin_SimpleHypothesis_2D::SetNumberOfSegments(int nb)
{
if ( nb < 1 )
throw SALOME_Exception("Number of segments must be positive");
*/
//=============================================================================
void NETGENPlugin_SimpleHypothesis_2D::SetLocalLength(double segmentLength)
- throw (SALOME_Exception)
{
if ( segmentLength < DBL_MIN )
throw SALOME_Exception("segment length must be more than zero");
/*!
* Sets <number of segments> value
*/
- void SetNumberOfSegments(int nb) throw (SALOME_Exception);
+ void SetNumberOfSegments(int nb);
/*!
* Returns <number of segments> value.
* Can be zero in case if LocalLength() has been set
/*!
* Sets <segment length> value
*/
- void SetLocalLength(double segmentLength) throw (SALOME_Exception);
+ void SetLocalLength(double segmentLength);
/*!
* Returns <segment length> value.
* Can be zero in case if NumberOfSegments() has been set
*/
//=============================================================================
void NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments(CORBA::Short nb)
- throw ( SALOME::SALOME_Exception )
{
ASSERT(myBaseImpl);
try {
// Destructor
virtual ~NETGENPlugin_SimpleHypothesis_2D_i();
- void SetNumberOfSegments(CORBA::Short nb) throw ( SALOME::SALOME_Exception );
+ void SetNumberOfSegments(CORBA::Short nb) ;
CORBA::Short GetNumberOfSegments();
void SetLocalLength(CORBA::Double segmentLength);