Skip to content

Commit

Permalink
Include version number in exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
tombentley committed Nov 12, 2015
1 parent 282b096 commit 0dc3dd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ private static void loadModule(com.redhat.ceylon.model.typechecker.model.Module
throw Metamodel.newModelError("Interrupted");
}
if(tries-- < 0)
throw Metamodel.newModelError("JBoss modules failed to make module available: "+declaration.getNameAsString());
throw Metamodel.newModelError("JBoss modules failed to make module available: "+declaration.getNameAsString() + "/" + declaration.getVersion());
}
}
}
Expand Down

0 comments on commit 0dc3dd8

Please sign in to comment.