HostNameLookupError.st
author Stefan Vogel <sv@exept.de>
Sun, 22 Aug 2004 20:10:21 +0200
changeset 1471 124fe8636686
child 1472 133213bfc075
permissions -rw-r--r--
initial checkin

"{ Package: 'stx:libbasic' }"

NameLookupError subclass:#HostNameLookupError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!


!HostNameLookupError class methodsFor:'initialization'!

initialize

    NotifierString := 'Cannot resolve host name'
! !

!HostNameLookupError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic2/HostNameLookupError.st,v 1.1 2004-08-22 18:10:00 stefan Exp $'
! !

HostNameLookupError initialize!