ConversionError.st
author Jan Vrany <jan.vrany@labware.com>
Mon, 29 Nov 2021 23:00:04 +0000
branchjv
changeset 25437 622824e701ea
parent 17911 a99f15c5efa5
permissions -rw-r--r--
Fix `ObjectMemory >> #nameForSnapshot` ...to actually do what the comment says: return current image name (if any).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7587
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     1
"
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     2
 COPYRIGHT (c) 2002 by eXept Software AG
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     3
              All Rights Reserved
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     4
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     5
 This software is furnished under a license and may be used
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     6
 only in accordance with the terms of that license and with the
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     8
 be provided or otherwise made available to, or used by, any
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
     9
 other person.  No title to or ownership of the software is
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    10
 hereby transferred.
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    11
"
6685
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
8483
3e76a8fe740a Change superclass to ProceedableError
Stefan Vogel <sv@exept.de>
parents: 7935
diff changeset
    14
ProceedableError subclass:#ConversionError
6685
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
6688
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    21
!ConversionError class methodsFor:'documentation'!
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    22
7587
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    23
copyright
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    24
"
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    25
 COPYRIGHT (c) 2002 by eXept Software AG
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    26
              All Rights Reserved
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    27
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    28
 This software is furnished under a license and may be used
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    29
 only in accordance with the terms of that license and with the
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    31
 be provided or otherwise made available to, or used by, any
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    32
 other person.  No title to or ownership of the software is
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    33
 hereby transferred.
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    34
"
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    35
!
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    36
6688
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    37
documentation
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    38
"
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    39
    raised when an error occurs while converting from/to character representation.
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    40
    (especially numbers, date, time etc)
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    41
"
f31cbf7b9921 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    42
! !
6685
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
6689
c8b2e0131e12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6688
diff changeset
    44
!ConversionError class methodsFor:'initialization'!
c8b2e0131e12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6688
diff changeset
    45
c8b2e0131e12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6688
diff changeset
    46
initialize
c8b2e0131e12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6688
diff changeset
    47
    NotifierString := 'conversion error'.
c8b2e0131e12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6688
diff changeset
    48
! !
c8b2e0131e12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6688
diff changeset
    49
6685
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!ConversionError class methodsFor:'documentation'!
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
version
17892
d86c8bd5ece3 Merged with CVS
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17869
diff changeset
    53
    ^ '$Header: /cvs/stx/stx/libbasic/ConversionError.st,v 1.6 2004/08/22 17:47:16 stefan Exp $'
17761
b0e5971141bc Added Lookup and BuiltinLookup classes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
    54
!
b0e5971141bc Added Lookup and BuiltinLookup classes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
    55
b0e5971141bc Added Lookup and BuiltinLookup classes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
    56
version_SVN
17911
a99f15c5efa5 Updated with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17910
diff changeset
    57
    ^ '$Id: ConversionError.st 10761 2012-01-19 11:46:00Z vranyj1 $'
6685
bb501b203b14 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
7587
89864caa2665 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6689
diff changeset
    59
17846
24edc476ac18 Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17845
diff changeset
    60
ConversionError initialize!
17892
d86c8bd5ece3 Merged with CVS
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17869
diff changeset
    61
17910
8d796ca8bd1d Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17892
diff changeset
    62
17911
a99f15c5efa5 Updated with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17910
diff changeset
    63