@Test
public void testInstantiation()
{
try {
throw new NoSuchHTTPHeaderException("Some message");
}
catch(NoSuchHTTPHeaderException ex) {
assertEquals("No such HTTP header Some message", ex.getMessage());
assertTrue(ex instanceof HTTPException);
assertTrue(ex instanceof ServerException);