0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / IntStart / IntStart_SearchOnBoundaries.lxx
index 7e2e5bb..8b8927e 100644 (file)
@@ -3,8 +3,8 @@
 //
 // 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 version 2.1 as published
+// 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.
@@ -23,14 +23,14 @@ inline Standard_Boolean IntStart_SearchOnBoundaries::IsDone () const {
 
 inline Standard_Boolean IntStart_SearchOnBoundaries::AllArcSolution () const {
 
-  if (!done) {StdFail_NotDone::Raise();}
+  if (!done) {throw StdFail_NotDone();}
   return all;
 }
 
 
 inline Standard_Integer IntStart_SearchOnBoundaries::NbPoints () const {
 
-  if (!done) {StdFail_NotDone::Raise();}
+  if (!done) {throw StdFail_NotDone();}
   return spnt.Length();
 }
 
@@ -38,13 +38,13 @@ inline Standard_Integer IntStart_SearchOnBoundaries::NbPoints () const {
 inline const IntStart_ThePathPoint& IntStart_SearchOnBoundaries::Point 
   (const Standard_Integer Index) const {
 
-  if (!done) {StdFail_NotDone::Raise();}
+  if (!done) {throw StdFail_NotDone();}
   return spnt.Value(Index);
 }
 
 inline Standard_Integer IntStart_SearchOnBoundaries::NbSegments () const {
 
-  if (!done) {StdFail_NotDone::Raise();}
+  if (!done) {throw StdFail_NotDone();}
   return sseg.Length();
 }
 
@@ -52,7 +52,7 @@ inline Standard_Integer IntStart_SearchOnBoundaries::NbSegments () const {
 inline const IntStart_TheSegment& IntStart_SearchOnBoundaries::Segment
   (const Standard_Integer Index) const {
 
-  if (!done) {StdFail_NotDone::Raise();}
+  if (!done) {throw StdFail_NotDone();}
   return sseg.Value(Index);
 }