* Test for <code>KeyException(String, Throwable)</code> constructor
* Assertion: constructs KeyException when <code>cause</code> is not null
* <code>msg</code> is null
*/
public void testKeyException08() {
KeyException tE = new KeyException(null, tCause);
if (tE.getMessage() != null) {
String toS = tCause.toString();
String getM = tE.getMessage();
assertTrue("getMessage() must should ".concat(toS), (getM
.indexOf(toS) != -1));
}
assertNotNull("getCause() must not return null", tE.getCause());
assertEquals("getCause() must return ".concat(tCause.toString()), tE
.getCause(), tCause);
}