Skip to content

Commit

Permalink
Resolved an issue with throwing an exception and it not being ddeclared
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseltime committed Jul 29, 2018
1 parent e131a49 commit 620c6b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,9 @@ public LooseBeanInfo() {
* </code>
*
* @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();

Expand Down

0 comments on commit 620c6b5

Please sign in to comment.