Simplify creation of IOError exception
This commit is contained in:
parent
38c25b670d
commit
3630005e19
|
@ -90,10 +90,7 @@ proc startConnection*(client: DiscordClient) {.async.} =
|
|||
asyncCheck client.handleWebsocketPacket()
|
||||
runForever()
|
||||
else:
|
||||
var e: ref IOError
|
||||
new(e)
|
||||
e.msg = "Failed to get gateway url, token may of been incorrect!"
|
||||
raise e
|
||||
raise newException(IOError, "Failed to get gateway url, token may of been incorrect!")
|
||||
|
||||
proc newDiscordClient(tkn: string): DiscordClient =
|
||||
globalToken = tkn
|
||||
|
|
Reference in New Issue