HostAddressLookupError.st
changeset 1471 124fe8636686
child 1472 133213bfc075
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HostAddressLookupError.st	Sun Aug 22 20:10:21 2004 +0200
@@ -0,0 +1,24 @@
+"{ Package: 'stx:libbasic' }"
+
+NameLookupError subclass:#HostAddressLookupError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-Errors'
+!
+
+
+!HostAddressLookupError class methodsFor:'initialization'!
+
+initialize
+
+    NotifierString := 'Cannot resolve host address'
+! !
+
+!HostAddressLookupError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/HostAddressLookupError.st,v 1.1 2004-08-22 18:10:21 stefan Exp $'
+! !
+
+HostAddressLookupError initialize!