[squeak-dev] The Trunk: Exceptions-jcg.15.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Oct 21 08:23:41 UTC 2009


Joshua Gargus uploaded a new version of Exceptions to project The Trunk:
http://source.squeak.org/trunk/Exceptions-jcg.15.mcz

==================== Summary ====================

Name: Exceptions-jcg.15
Author: jcg
Time: 21 October 2009, 1:23:38 am
UUID: 086bb661-99e3-483d-aa28-de06c2a0fd66
Ancestors: Exceptions-jcg.14

NotYetImplemented overrides #defaultAction so that #notYetImplemented pops up a notifier if nobody catches the exception.  Best of both worlds.

=============== Diff against Exceptions-jcg.14 ===============

Item was added:
+ ----- Method: NotYetImplemented>>defaultAction (in category 'handling') -----
+ defaultAction
+ 	self inform: 'Not yet implemented (', self messageText, ')'!

Item was changed:
  Error subclass: #NotYetImplemented
  	instanceVariableNames: 'receiverClass selector context'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'Exceptions-Kernel'!
  
+ !NotYetImplemented commentStamp: 'jcg 10/21/2009 01:20' prior: 0!
+ Sent by #notYetImplemented.  Better than the age-old behavior of opening a notifier window, because this can be caught and handled.
- !NotYetImplemented commentStamp: 'jcg 10/21/2009 00:58' prior: 0!
- Sent by #notYetImplemented.  Better than the age-old behavior of opening a notifier window, because this can be caught and handled 
- 
- Perhaps there should be a Morphic backstop to open a notifier if no-one else handles the exception, but this doesn't seem too important.
  !




More information about the Squeak-dev mailing list