From 152fec95e0f56f6bafe89c2348c1ad045de70fdd Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 3 Nov 2014 16:43:41 +0700 Subject: [PATCH] Fix `ex-info` call args (@kul) --- src/taoensso/nippy.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/taoensso/nippy.clj b/src/taoensso/nippy.clj index 6d47f15..75a9335 100644 --- a/src/taoensso/nippy.clj +++ b/src/taoensso/nippy.clj @@ -551,7 +551,7 @@ nil nil :aes128-sha512 aes128-encryptor :no-header (throw (ex-info ":auto not supported on headerless data." {})) - :else (throw (ex-info ":auto not supported for non-standard encryptors.")) + :else (throw (ex-info ":auto not supported for non-standard encryptors." {})) (throw (ex-info (format "Unrecognized :auto encryptor id: %s" encryptor-id) {:encryptor-id encryptor-id}))))