From 79bf7b5113f0da3eb37527467f5735318be2f3ea Mon Sep 17 00:00:00 2001 From: jfiat Date: Wed, 18 Feb 2015 10:24:52 +0000 Subject: [PATCH] Fix the class reference issue reported at https://docs.google.com/spreadsheet/ccc?key=0At9HXU58N0BAdFNpbUljRHRjR2NqYk9feXd1V0Zubmc&usp=sharing (commit by Conaclos) git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1415 abb3cda0-5349-4a8f-a601-0c33ac3a8c38 --- .../running-and-debugging/handling-exceptions.wiki | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/documentation/current/eiffelstudio/eiffelstudio-how-tos/running-and-debugging/handling-exceptions.wiki b/documentation/current/eiffelstudio/eiffelstudio-how-tos/running-and-debugging/handling-exceptions.wiki index 3b9995c0..7318c247 100644 --- a/documentation/current/eiffelstudio/eiffelstudio-how-tos/running-and-debugging/handling-exceptions.wiki +++ b/documentation/current/eiffelstudio/eiffelstudio-how-tos/running-and-debugging/handling-exceptions.wiki @@ -3,13 +3,10 @@ [[Property:uuid|43ce73b9-3ac4-4f71-34a3-f359a66d9082]] It is possible to raise and catch exceptions in Eiffel. Catching exceptions is done by using the rescue keyword. The [[ref:/libraries/base/reference/exceptions_chart|EXCEPTIONS]] class provides helper features to analyze the caught exception and handle it. -The [[ref:/libraries/base/reference/exceptions_chart|EXCEPTIONS]] class also provides ways to raise exception, via its feature [[ref:libraries/base/reference/exceptions_flatshort|raise]] . +The [[ref:/libraries/base/reference/exceptions_chart|EXCEPTIONS]] class also provides ways to raise exception, via its feature [[ref:libraries/base/reference/exceptions_flatshort|raise]] . When an exception is raised while the application is being debugged, the application stops immediately and the debugger displays the context in which the exception occurred, whether or not the exception is rescued. {{seealso|
[[ET: Design by Contract (tm), Assertions and Exceptions|Reference of exceptions]] }} - - -