1 Commits
0.4.0 ... 0.4.1

2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "0.4.0"
version = "0.4.1"
author = "Jonathan Bernard"
description = "Jonathan's opinionated extensions and auth layer for Jester."
license = "MIT"

View File

@ -22,7 +22,7 @@ proc raiseApiError*(respCode: HttpCode, respMsg: string, msg = "") =
raise apiError
proc raiseApiError*(parent: ref Exception, respCode: HttpCode, respMsg: string = "", msg = "") =
proc raiseApiError*(respCode: HttpCode, parent: ref Exception, respMsg: string = "", msg = "") =
var apiError = newApiError(
parent = parent,
respCode = respCode,