WrongProceedabilityError.st
changeset 25082 7c8ec60c5081
parent 7586 63e4900c8931
child 25083 145751b52d1a
--- a/WrongProceedabilityError.st	Sat Dec 07 15:51:43 2019 +0100
+++ b/WrongProceedabilityError.st	Sat Dec 07 17:58:32 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1999 by eXept Software AG
               All Rights Reserved
@@ -9,10 +11,9 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
+"{ Package: 'stx:libbasic' }"
 
-
-"{ Package: 'stx:libbasic' }"
+"{ NameSpace: Smalltalk }"
 
 SignalError subclass:#WrongProceedabilityError
 	instanceVariableNames:''
@@ -60,14 +61,19 @@
     "
      self initialize
     "
+! !
 
+!WrongProceedabilityError methodsFor:'accessing'!
 
+description
+    ^ super description , ': ', self parameter name
 ! !
 
 !WrongProceedabilityError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/WrongProceedabilityError.st,v 1.4 2003-08-29 19:14:38 cg Exp $'
+    ^ '$Header$'
 ! !
 
+
 WrongProceedabilityError initialize!