Exception.st
changeset 328 7b542c0bf1dd
parent 326 d2902942491d
child 345 cf2301210c47
equal deleted inserted replaced
327:183f094cfd72 328:7b542c0bf1dd
    22 
    22 
    23 Exception comment:'
    23 Exception comment:'
    24 COPYRIGHT (c) 1993 by Claus Gittinger
    24 COPYRIGHT (c) 1993 by Claus Gittinger
    25 	      All Rights Reserved
    25 	      All Rights Reserved
    26 
    26 
    27 $Header: /cvs/stx/stx/libbasic/Exception.st,v 1.19 1995-04-11 14:49:09 claus Exp $
    27 $Header: /cvs/stx/stx/libbasic/Exception.st,v 1.20 1995-05-01 21:29:20 claus Exp $
    28 '!
    28 '!
    29 
    29 
    30 !Exception class methodsFor:'documentation'!
    30 !Exception class methodsFor:'documentation'!
    31 
    31 
    32 copyright
    32 copyright
    43 "
    43 "
    44 !
    44 !
    45 
    45 
    46 version
    46 version
    47 "
    47 "
    48 $Header: /cvs/stx/stx/libbasic/Exception.st,v 1.19 1995-04-11 14:49:09 claus Exp $
    48 $Header: /cvs/stx/stx/libbasic/Exception.st,v 1.20 1995-05-01 21:29:20 claus Exp $
    49 "
    49 "
    50 !
    50 !
    51 
    51 
    52 documentation
    52 documentation
    53 "
    53 "
   390     "Continue after the handle:do: - the handle:do: returns value"
   390     "Continue after the handle:do: - the handle:do: returns value"
   391 
   391 
   392     handlerContext unwind:value
   392     handlerContext unwind:value
   393 !
   393 !
   394 
   394 
       
   395 returnDoing:aBlock
       
   396     "Continue after the handle:do: - the handle:do: returns aBlock value"
       
   397 
       
   398     handlerContext unwindThenDo:aBlock
       
   399 !
       
   400 
   395 restart
   401 restart
   396     "restart the handle:do: - usually after some repair work is done
   402     "restart the handle:do: - usually after some repair work is done
   397      in handler"
   403      in handler"
   398 
   404 
   399     handlerContext unwindAndRestart
   405     handlerContext unwindAndRestart