, , . , .
, , . , - :
public String getConfigurationProperty(String name) throws SQLException {
}
,
public String getConfigurationProperty(String name) throws ConfigurationException {
try {
} catch (SQLException ex) {
ConfigurationException wrapper =
throw wrapper;
}
}
. , , , , ,
public String getConfigurationProperty(String name) throws IOException {
}
, IOException SQLException s. , , ConfigurationException . , , : , , .
, . , , , .
public String getConfigurationProperty(String name) throws ConfigurationException {
try {
} catch (IOException ex) {
ConfigurationException wrapper =
throw wrapper;
}
}