On Wed, Jan 30, 2013 at 4:26 AM, <commits@source.squeak.org> wrote:
 
+ Error subclass: #NotImplementedError

+ NotImplementedError subclass: #NotYetImplemented

+ NotImplementedError subclass: #SubclassResponsibilityError


The usual naming convention for exceptions is to omit the the "Error" part of the name (e.g., MessageNotUnderstood). So these new exceptions ought to be:

NotImplemented
NotYetImplemented
SubclassResponsibility

Otherwise, looks great!

Colin