removed #defaultAction to really raise an exception
authorStefan Vogel <sv@exept.de>
Tue, 03 Apr 2007 15:01:03 +0200
changeset 10490 01b97b88bece
parent 10489 e55d1a27d02b
child 10491 41c9bfd7fe86
removed #defaultAction to really raise an exception
CharacterEncoderError.st
--- a/CharacterEncoderError.st	Tue Apr 03 14:52:47 2007 +0200
+++ b/CharacterEncoderError.st	Tue Apr 03 15:01:03 2007 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 ConversionError subclass:#CharacterEncoderError
@@ -53,14 +52,6 @@
     defaultValue := something.
 ! !
 
-!CharacterEncoderError methodsFor:'default actions'!
-
-defaultAction
-    "the default action is to return the default value."
-
-    ^ self defaultValue
-! !
-
 !CharacterEncoderError methodsFor:'queries'!
 
 isInvalidEncodingError
@@ -70,5 +61,5 @@
 !CharacterEncoderError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderError.st,v 1.7 2004-03-09 21:58:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderError.st,v 1.8 2007-04-03 13:01:03 stefan Exp $'
 ! !