InvalidModeError.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 11:49:45 +0200
changeset 25367 e117c14e2800
parent 25174 c9950591b619
permissions -rw-r--r--
#BUGFIX by stefan class: FileStream changed: #copy:into:bufferSize: #position #position: Linux: sendfile() fix.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8727
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     1
"
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     3
              All Rights Reserved
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     4
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     5
 This software is furnished under a license and may be used
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     6
 only in accordance with the terms of that license and with the
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     8
 be provided or otherwise made available to, or used by, any
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
     9
 other person.  No title to or ownership of the software is
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    10
 hereby transferred.
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    11
"
25174
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    12
"{ Package: 'stx:libbasic' }"
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
25174
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
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:#InvalidModeError
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
8727
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    23
!InvalidModeError class methodsFor:'documentation'!
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    24
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    25
copyright
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    26
"
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    27
 COPYRIGHT (c) 2004 by eXept Software AG
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    28
              All Rights Reserved
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    29
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    30
 This software is furnished under a license and may be used
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    31
 only in accordance with the terms of that license and with the
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    33
 be provided or otherwise made available to, or used by, any
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    34
 other person.  No title to or ownership of the software is
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    35
 hereby transferred.
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    36
"
533d79aac561 copyright
Claus Gittinger <cg@exept.de>
parents: 8068
diff changeset
    37
! !
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
25174
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    39
!InvalidModeError class methodsFor:'initialization'!
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    40
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    41
initialize
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    42
    NotifierString := 'binary/text mode mismatch'.
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    43
! !
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    44
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!InvalidModeError 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
25174
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    48
    ^ '$Header$'
8068
4d18d2a101c9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !
25174
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    50
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    51
c9950591b619 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 8727
diff changeset
    52
InvalidModeError initialize!