*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Wed, 11 Feb 2004 16:19:44 +0100
changeset 7908 69ed349024cb
parent 7907 e6e69d83cba0
child 7909 a045c719fca2
*** empty log message ***
CharacterEncoderError.st
--- a/CharacterEncoderError.st	Wed Feb 11 16:17:36 2004 +0100
+++ b/CharacterEncoderError.st	Wed Feb 11 16:19:44 2004 +0100
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2004 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Error subclass:#CharacterEncoderError
@@ -7,6 +19,29 @@
 	category:'Collections-Text-Encodings'
 !
 
+!CharacterEncoderError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2004 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    raised if no encoding/decoding exists for some codePoint
+    while converting 
+    (for example, when converting unicode to iso8859-x and vice versa).
+"
+! !
 
 !CharacterEncoderError methodsFor:'accessing'!
 
@@ -21,5 +56,5 @@
 !CharacterEncoderError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderError.st,v 1.2 2004-02-11 15:17:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderError.st,v 1.3 2004-02-11 15:19:44 cg Exp $'
 ! !