HostNameLookupError.st
author Claus Gittinger <cg@exept.de>
Wed, 02 Feb 2005 12:03:54 +0100
changeset 1522 7a569eca4d68
parent 1472 133213bfc075
child 3073 d5f3b25d9040
permissions -rw-r--r--
copyright
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1522
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     1
"
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     3
              All Rights Reserved
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     4
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     5
 This software is furnished under a license and may be used
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     6
 only in accordance with the terms of that license and with the
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
     9
 other person.  No title to or ownership of the software is
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    10
 hereby transferred.
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    11
"
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    12
1472
133213bfc075 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1471
diff changeset
    13
"{ Package: 'stx:libbasic2' }"
1471
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
NameLookupError subclass:#HostNameLookupError
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
	category:'Kernel-Exceptions-Errors'
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
!
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
1522
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    22
!HostNameLookupError class methodsFor:'documentation'!
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    23
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    24
copyright
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    25
"
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    26
 COPYRIGHT (c) 2004 by eXept Software AG
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    27
              All Rights Reserved
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    28
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    29
 This software is furnished under a license and may be used
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    30
 only in accordance with the terms of that license and with the
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    32
 be provided or otherwise made available to, or used by, any
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    33
 other person.  No title to or ownership of the software is
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    34
 hereby transferred.
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    35
"
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    36
! !
1471
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
!HostNameLookupError class methodsFor:'initialization'!
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
initialize
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
    NotifierString := 'Cannot resolve host name'
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
! !
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
!HostNameLookupError class methodsFor:'documentation'!
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    47
version
1522
7a569eca4d68 copyright
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
    48
    ^ '$Header: /cvs/stx/stx/libbasic2/HostNameLookupError.st,v 1.3 2005-02-02 11:03:26 cg Exp $'
1471
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
! !
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
124fe8636686 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    51
HostNameLookupError initialize!