CharacterEncoderError.st
branchjv
changeset 18120 e3a375d5f6a8
parent 17911 a99f15c5efa5
parent 17267 1d49121c1dc7
child 20079 8d884971c2ed
equal deleted inserted replaced
18119:cb7a12afe736 18120:e3a375d5f6a8
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 ConversionError subclass:#CharacterEncoderError
    16 ConversionError subclass:#CharacterEncoderError
    15 	instanceVariableNames:'defaultValue'
    17 	instanceVariableNames:'defaultValue'
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    53 ! !
    55 ! !
    54 
    56 
    55 !CharacterEncoderError methodsFor:'queries'!
    57 !CharacterEncoderError methodsFor:'queries'!
    56 
    58 
    57 defaultResumeValue
    59 defaultResumeValue
       
    60     "the default answer, if no one handles the query and the exception is resumed"
       
    61 
    58     ^ self defaultValue
    62     ^ self defaultValue
    59 !
    63 !
    60 
    64 
    61 isInvalidEncodingError
    65 isInvalidEncodingError
    62     ^ false
    66     ^ false
    63 ! !
    67 ! !
    64 
    68 
    65 !CharacterEncoderError class methodsFor:'documentation'!
    69 !CharacterEncoderError class methodsFor:'documentation'!
    66 
    70 
    67 version
    71 version
    68     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderError.st,v 1.9 2008/10/30 19:54:05 cg Exp $'
    72     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderError.st,v 1.10 2014-12-30 12:39:44 cg Exp $'
    69 !
       
    70 
       
    71 version_SVN
       
    72     ^ '$Id: CharacterEncoderError.st 10761 2012-01-19 11:46:00Z vranyj1 $'
       
    73 ! !
    73 ! !
    74 
    74 
    75 
       
    76