catch usage error before segfault

This commit is contained in:
Adam D. Ruppe 2021-01-25 21:06:57 -05:00
parent 668553d6a9
commit c20375a8df
1 changed files with 2 additions and 0 deletions

View File

@ -966,6 +966,8 @@ class HttpRequest {
socket.connect(new UnixAddress(unixSocketPath));
} else {
// FIXME: i should prolly do ipv6 if available too.
if(host.length == 0) // this could arguably also be an in contract since it is user error, but the exception is good enough
throw new Exception("No host given for request");
socket.connect(new InternetAddress(host, port));
}