From 620c6b5feeef10a58afc5b16190cfde9a505c751 Mon Sep 17 00:00:00 2001 From: Justin Hanselman Date: Sat, 28 Jul 2018 23:41:30 -0500 Subject: [PATCH] Resolved an issue with throwing an exception and it not being ddeclared --- .../java/com/hanseltime/loosebeans/bean/LooseBeanInfo.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/hanseltime/loosebeans/bean/LooseBeanInfo.java b/src/main/java/com/hanseltime/loosebeans/bean/LooseBeanInfo.java index d1fe272..2344b0c 100644 --- a/src/main/java/com/hanseltime/loosebeans/bean/LooseBeanInfo.java +++ b/src/main/java/com/hanseltime/loosebeans/bean/LooseBeanInfo.java @@ -144,8 +144,9 @@ public LooseBeanInfo() { * * * @param externCacheUnlock Whether of not the calling context will unlock the cache Lock. If false, this is simply the nullary constructor. + * @throws Exception If class loader fails in an unmanageable way (catch in a calling context, or at least with debugger) */ - protected LooseBeanInfo( boolean externCacheUnlock ) { + protected LooseBeanInfo( boolean externCacheUnlock ) throws Exception { //Make beanClazz_ be populated populateBeanClassInstance();