buffer.append( (char)character );
}
in.close();
}
catch (IOException ioe) {
msgEntry = new MessageLogEntry(this, VERSION);
msgEntry.setAppContext("getPage()");
msgEntry.setMessageText("IOException getting " + urlString);
msgEntry.setError( ioe.getMessage() );
logger.logWarning(msgEntry);
}
catch (Exception e) {
msgEntry = new MessageLogEntry(this, VERSION);
msgEntry.setAppContext("getPage()");
msgEntry.setMessageText("Exception getting " + urlString);
msgEntry.setError( e.getMessage() );
logger.logWarning(msgEntry);
}