implement ResourceRegistryStandardImpl#convert to get rid of 'todo'

This commit is contained in:
Nathan Xu 2020-03-10 16:34:22 -04:00 committed by Steve Ebersole
parent adc87b7908
commit 70b6de476c
1 changed files with 1 additions and 2 deletions

View File

@ -239,8 +239,7 @@ public final class ResourceRegistryStandardImpl implements ResourceRegistry {
}
private JDBCException convert(SQLException e, String s) {
// todo : implement
return null;
return new JDBCException( s, e );
}
@Override