Salome HOME
Switch to standard C++ exception mechanism
[plugins/xtplugin.git] / src / XTPlugin_IOperations.cxx
index 04839db01c68d9a836c30c7a45921721d9a3d248..8d6a7acee24428205bdeaeafe7b143d347ab3403 100644 (file)
@@ -95,9 +95,8 @@ XTPlugin_IOperations::ImportXT( const TCollection_AsciiString& theFileName )
     // Greate material groups.
     //MakeMaterialGroups( anImported, aSeq );
   }
-  catch( Standard_Failure ) {
-    Handle(Standard_Failure) aFail = Standard_Failure::Caught();
-    SetErrorCode( aFail->GetMessageString() );
+  catch( Standard_Failure& aFail ) {
+    SetErrorCode( aFail.GetMessageString() );
     return NULL;
   }