PTYOpenError.st
author Stefan Vogel <sv@exept.de>
Mon, 22 Jun 2015 11:33:37 +0200
branchexpecco_2_7_5_branch
changeset 18499 b132ac7c9d6a
parent 16594 2e6ab9b53c07
permissions -rw-r--r--
GLIBC 2.12 compatibility
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16594
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
OpenError subclass:#PTYOpenError
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!PTYOpenError class methodsFor:'documentation'!
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2014 by eXept Software AG
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
! !
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!PTYOpenError class methodsFor:'documentation'!
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
version
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    ^ '$Header: /cvs/stx/stx/libbasic/PTYOpenError.st,v 1.1 2014-06-23 07:08:09 cg Exp $'
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
!
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
version_CVS
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    ^ '$Header: /cvs/stx/stx/libbasic/PTYOpenError.st,v 1.1 2014-06-23 07:08:09 cg Exp $'
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
! !
2e6ab9b53c07 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46