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