* Test for <code>UnrecoverableKeyException(String)</code> constructor
* Assertion: constructs UnrecoverableKeyException with detail message msg.
* Parameter <code>msg</code> is not null.
*/
public void testUnrecoverableKeyException02() {
UnrecoverableKeyException tE;
for (int i = 0; i < msgs.length; i++) {
tE = new UnrecoverableKeyException(msgs[i]);
assertEquals("getMessage() must return: ".concat(msgs[i]), tE
.getMessage(), msgs[i]);
assertNull("getCause() must return null", tE.getCause());
}
}