SubclassResponsibilityError.st
changeset 10878 b1df79d1057d
parent 7586 63e4900c8931
child 13172 b3b40febdba1
child 17711 39faaaf888b4
--- a/SubclassResponsibilityError.st	Mon Feb 18 09:36:59 2008 +0100
+++ b/SubclassResponsibilityError.st	Mon Feb 18 09:37:30 2008 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 ProceedableError subclass:#SubclassResponsibilityError
@@ -50,10 +49,16 @@
    NotifierString := 'method must be reimplemented in subclass'
 ! !
 
+!SubclassResponsibilityError methodsFor:'queries'!
+
+description
+    ^ '"',parameter , '" ', super description
+! !
+
 !SubclassResponsibilityError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.6 2003-08-29 19:15:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.7 2008-02-18 08:37:30 cg Exp $'
 ! !
 
 SubclassResponsibilityError initialize!