0028550: Foundation Classes - fix empty message passed to thrown exception
[occt.git] / src / GeomToStep / GeomToStep_MakeToroidalSurface.cxx
old mode 100755 (executable)
new mode 100644 (file)
index ccdf92b..8809d9e
@@ -1,12 +1,24 @@
-// File:       GeomToStep_MakeToroidalSurface.cxx
-// Created:    Thu Jun 17 14:47:08 1993
-// Author:     Martine LANGLOIS
-//             <mla@mastox>
+// Created on: 1993-06-17
+// Created by: Martine LANGLOIS
+// Copyright (c) 1993-1999 Matra Datavision
+// Copyright (c) 1999-2014 OPEN CASCADE SAS
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
 
-#include <GeomToStep_MakeToroidalSurface.ixx>
+
+#include <Geom_ToroidalSurface.hxx>
 #include <GeomToStep_MakeAxis2Placement3d.hxx>
+#include <GeomToStep_MakeToroidalSurface.hxx>
 #include <StdFail_NotDone.hxx>
-#include <Geom_ToroidalSurface.hxx>
 #include <StepGeom_ToroidalSurface.hxx>
 #include <TCollection_HAsciiString.hxx>
 #include <UnitsMethods.hxx>
@@ -15,7 +27,6 @@
 // Creation d' une toroidal_surface de prostep a partir d' une ToroidalSurface
 // de Geom
 //=============================================================================
-
 GeomToStep_MakeToroidalSurface::GeomToStep_MakeToroidalSurface
   ( const Handle(Geom_ToroidalSurface)& S )
        
@@ -43,6 +54,6 @@ GeomToStep_MakeToroidalSurface::GeomToStep_MakeToroidalSurface
 const Handle(StepGeom_ToroidalSurface) &
       GeomToStep_MakeToroidalSurface::Value() const
 {
-  StdFail_NotDone_Raise_if(!done == Standard_True,"");
+  StdFail_NotDone_Raise_if (!done, "GeomToStep_MakeToroidalSurface::Value() - no result");
   return theToroidalSurface;
 }