NameLookupError.st
author Stefan Vogel <sv@exept.de>
Wed, 21 Nov 2007 18:24:07 +0100
changeset 1917 61c602336f3d
parent 1521 4daa5084e31e
child 2447 137fef41c520
permissions -rw-r--r--
Clean up code and document differences between #add: and #addLast:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1521
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     1
"
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     3
              All Rights Reserved
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     4
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     5
 This software is furnished under a license and may be used
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     6
 only in accordance with the terms of that license and with the
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
     9
 other person.  No title to or ownership of the software is
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    10
 hereby transferred.
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    11
"
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    12
1163
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic2' }"
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
1469
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    15
ProceedableError subclass:#NameLookupError
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    16
	instanceVariableNames:'request'
1163
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
	category:'OS-Sockets'
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
!
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
1521
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    22
!NameLookupError class methodsFor:'documentation'!
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    23
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    24
copyright
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    25
"
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    26
 COPYRIGHT (c) 2004 by eXept Software AG
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    27
              All Rights Reserved
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    28
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    29
 This software is furnished under a license and may be used
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    30
 only in accordance with the terms of that license and with the
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    32
 be provided or otherwise made available to, or used by, any
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    33
 other person.  No title to or ownership of the software is
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    34
 hereby transferred.
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    35
"
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    36
! !
1163
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
!NameLookupError class methodsFor:'initialization'!
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
initialize
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
    NotifierString := 'Cannot resolve name'
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
! !
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
1469
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    45
!NameLookupError methodsFor:'accessing'!
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    46
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    47
request
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    48
    ^ request
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    49
!
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    50
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    51
request:something
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    52
    request := something.
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    53
! !
252e0f1e51e2 Now subclass of ProceedableError.
Stefan Vogel <sv@exept.de>
parents: 1163
diff changeset
    54
1163
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    55
!NameLookupError class methodsFor:'documentation'!
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    56
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    57
version
1521
4daa5084e31e copyright
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
    58
    ^ '$Header: /cvs/stx/stx/libbasic2/NameLookupError.st,v 1.3 2005-02-02 10:59:40 cg Exp $'
1163
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    59
! !
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    60
bf124794e128 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    61
NameLookupError initialize!