* @tests java.net.UnknownServiceException#UnknownServiceException(java.lang.String)
*/
public void test_ConstructorLjava_lang_String() {
try {
if (true) {
throw new UnknownServiceException("test");
}
fail("Constructor failed");
} catch (UnknownServiceException e) {
assertEquals("Wrong exception message", "test", e.getMessage());
}