285286287288289290291292
} } protected void throwOnInvalidSession() throws PushletException { if (id == null) { throw new PushletException("Invalid pushlet session"); } }
319320321322323324325326
// p("Opening urlConnection inputstream"); return new InputStreamReader(urlConnection.getInputStream()); } catch (Throwable t) { warn("openURL() could not open " + aURL, t); throw new PushletException(" could not open " + aURL, t); } }
346347348349350351352353
p("Event received " + event); return event; } catch (Throwable t) { // Stop and report error. warn("doControl() exception", t); throw new PushletException(" error parsing response from" + controlURL, t); } }