117118119120121122123124
properties.store(out, CONFIGHEADER); out.close(); } catch (Exception e) { throw new ConfigStoreException("Failed to write config " + configPath, e); } }
160161162163164165166167
} return config; } catch (Exception e) { throw new ConfigStoreException("Failed to read config" + configPath, e); } }
119120121122123124125126
162163164165166167168169
8384858687888990
} pref.sync(); } catch (BackingStoreException be) { throw new ConfigStoreException("Failed to store config" + configPath, be); } }
129130131132133134135136
} return config; } catch (BackingStoreException be) { throw new ConfigStoreException("Failed to load config" + configPath, be); } }
111112113114115116117118
out.close(); } } catch (Exception e) { throw new ConfigStoreException("Failed to write config " + configPath, e); //$NON-NLS-1$ } }
157158159160161162163164
} return config; } catch (Exception e) { throw new ConfigStoreException("Failed to read config" + configPath, e); //$NON-NLS-1$ } }