The Inbox: Exceptions-fbs.41.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Exceptions-fbs.41.mcz

commits-2
Frank Shearar uploaded a new version of Exceptions to project The Inbox:
http://source.squeak.org/inbox/Exceptions-fbs.41.mcz

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

Name: Exceptions-fbs.41
Author: fbs
Time: 30 January 2013, 8:03:50.434 pm
UUID: 0ec349ad-92b9-4b12-b965-87d9c1659457
Ancestors: Exceptions-fbs.40

Rename NotImplemented errors in line with conventions 1 of 3.

=============== Diff against Exceptions-fbs.40 ===============

Item was changed:
+ NotImplemented subclass: #MessageNotUnderstood
- NotImplementedError subclass: #MessageNotUnderstood
  instanceVariableNames: 'message receiver reachedDefaultHandler'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'Exceptions-Kernel'!
 
  !MessageNotUnderstood commentStamp: '<historical>' prior: 0!
  This exception is provided to support Object>>doesNotUnderstand:.!

Item was added:
+ Error subclass: #NotImplemented
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Exceptions-Kernel'!

Item was removed:
- Error subclass: #NotImplementedError
- instanceVariableNames: ''
- classVariableNames: ''
- poolDictionaries: ''
- category: 'Exceptions-Kernel'!

Item was changed:
+ NotImplemented subclass: #NotYetImplemented
- NotImplementedError 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.
  !

Item was added:
+ NotImplemented subclass: #SubclassResponsibility
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Exceptions-Kernel'!
+
+ !SubclassResponsibility commentStamp: 'fbs 1/26/2013 00:20' prior: 0!
+ I am signalled when a subclass fails to implement an "abstract method" and something sends an instance of this subclass the unimplemented message.!

Item was removed:
- NotImplementedError subclass: #SubclassResponsibilityError
- instanceVariableNames: ''
- classVariableNames: ''
- poolDictionaries: ''
- category: 'Exceptions-Kernel'!
-
- !SubclassResponsibilityError commentStamp: 'fbs 1/26/2013 00:20' prior: 0!
- I am signalled when a subclass fails to implement an "abstract method" and something sends an instance of this subclass the unimplemented message.!