* Test for <code>BadPaddingException(String)</code> constructor
* Assertion: constructs BadPaddingException when <code>msg</code> is null
*/
public void testBadPaddingException03() {
String msg = null;
BadPaddingException tE = new BadPaddingException(msg);
assertNull("getMessage() must return null.", tE.getMessage());
assertNull("getCause() must return null", tE.getCause());
}