0028550: Foundation Classes - fix empty message passed to thrown exception
[occt.git] / src / GC / GC_MakeCylindricalSurface.cxx
index 7d3c1fa..b364bae 100644 (file)
@@ -105,6 +105,7 @@ GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Cylinder& Cyl ,
 const Handle(Geom_CylindricalSurface)& 
        GC_MakeCylindricalSurface::Value() const
 { 
-  StdFail_NotDone_Raise_if(TheError != gce_Done,"");
+  StdFail_NotDone_Raise_if (TheError != gce_Done,
+                            "GC_MakeCylindricalSurface::Value() - no result");
   return TheCylinder;
 }