Add exception classes useful for clj-http-lite (#1346)
* Add exception classes useful for clj-http-lite Closes #1345 * update changelog
This commit is contained in:
parent
d27fc0d2d6
commit
464a000b1b
2 changed files with 3 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ A preview of the next release can be installed from
|
|||
## Unreleased
|
||||
|
||||
- [#1343](https://github.com/babashka/babashka/issues/1343): Fix postgres feature
|
||||
|
||||
- [#1345](https://github.com/babashka/babashka/issues/1345): add `javax.net.ssl.SSLException` and `java.net.SocketTimeoutException` classes ([@lread](https://github.com/lread))
|
||||
## 0.9.161 (2022-07-31)
|
||||
|
||||
- Fix `exec`
|
||||
|
|
|
|||
|
|
@ -141,6 +141,7 @@
|
|||
java.net.HttpCookie
|
||||
java.net.PasswordAuthentication
|
||||
java.net.ProxySelector
|
||||
java.net.SocketTimeoutException
|
||||
java.net.http.HttpClient
|
||||
java.net.http.HttpClient$Builder
|
||||
java.net.http.HttpClient$Redirect
|
||||
|
|
@ -164,6 +165,7 @@
|
|||
javax.net.ssl.HttpsURLConnection ;; clj-http-lite
|
||||
javax.net.ssl.KeyManagerFactory
|
||||
javax.net.ssl.SSLContext
|
||||
javax.net.ssl.SSLException
|
||||
javax.net.ssl.SSLParameters
|
||||
javax.net.ssl.SSLSession ;; clj-http-lite
|
||||
javax.net.ssl.TrustManager
|
||||
|
|
|
|||
Loading…
Reference in a new issue