Re: [Pharo-users] open spec window to handle exception and pause execution

2019-11-20 Thread Richard Sargent
Paul, I'm going by memory and not Pharo specific. I believe the default handling of the end of the exception block is implicitly equivalent to ex return: nil. So, to get further handling of the exception, you need to #pass it or otherwise resignal it. Then the development environment will catch a

[Pharo-users] open spec window to handle exception and pause execution

2019-11-20 Thread PAUL DEBRUICKER
Hi - I have a subclass of ComposablePresenter (lets call it MyPresenter) that seems to work how I want. When doing some processing I'd like to open MyPresenter when an exception occurs and pass it the exception e.g. [ [self testCondition] whileTrue:[ self doSomeStuff] ] on: MyNotification d