StreamIOError.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 16:22:26 +0200
changeset 25375 b784fc06a5eb
parent 25170 534d55127523
permissions -rw-r--r--
#REFACTORING by stefan class: KeyedCollection class added: #newWithCapacity:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     1
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     3
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     4
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     5
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     6
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     9
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    10
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    11
"
25170
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    12
"{ Package: 'stx:libbasic' }"
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
25170
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    14
"{ NameSpace: Smalltalk }"
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
StreamError subclass:#StreamIOError
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Kernel-Exceptions-Errors'
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    23
!StreamIOError class methodsFor:'documentation'!
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    24
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    25
copyright
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    26
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    27
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    28
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    29
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    30
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    31
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    33
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    34
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    35
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    36
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    37
! !
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
25170
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    39
!StreamIOError class methodsFor:'initialization'!
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    40
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    41
initialize
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    42
    NotifierString := 'I/O error'.
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    43
! !
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    44
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!StreamIOError class methodsFor:'documentation'!
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
version
25170
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    48
    ^ '$Header$'
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !
25170
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    50
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    51
534d55127523 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    52
StreamIOError initialize!