142143144145146147148
// remember the last seen exception pe = e; } } // couldn't parse throw new NestedRuntimeException(pe); }
7172737475767778
return props; } catch (IOException e) { throw new NestedRuntimeException(e); } }
5960616263646566
} return InetAddress.getByName(StringPropertyReplacer.replaceProperties(text)); } catch (UnknownHostException e) { throw new NestedRuntimeException(e); } }
7980818283848586
setValue(props); } catch (IOException e) { throw new NestedRuntimeException(e); } }
979899100101102103104
p.store(baos, null); return baos.toString(ENC); } catch (IOException e) { throw new NestedRuntimeException(e); } }
75767778798081828384858687888990
Document d = db.parse(is); return d; } catch (ParserConfigurationException e) { throw new NestedRuntimeException(e); } catch (SAXException e) { throw new NestedRuntimeException(e); } catch (IOException e) { throw new NestedRuntimeException(e); } }
4748495051525354
{ return Strings.toURL(getAsText()); } catch (MalformedURLException e) { throw new NestedRuntimeException(e); } }
4849505152535455
return type; } catch (Exception e) { throw new NestedRuntimeException(e); } }
129130131132133134135
{ return new File(getAsText()).getCanonicalFile(); } catch (IOException e) { throw new NestedRuntimeException(e); } }