Description: Declare SQLException to fix build failure.
 .
 [ERROR] /<path>/jdbc/src/main/java/org/postgis/DriverWrapper.java:[189,32]
 unreported exception java.sql.SQLException; must be caught or declared to be thrown
 .
 Reverts: https://github.com/postgis/postgis-java/commit/1c3f9362488c0d8a195802a00e62725f3830797c
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: not-needed

--- a/jdbc/src/main/java/org/postgis/DriverWrapper.java
+++ b/jdbc/src/main/java/org/postgis/DriverWrapper.java
@@ -179,8 +179,10 @@ public class DriverWrapper extends Drive
      * @see java.sql.Driver#acceptsURL
      * @param url the URL of the driver
      * @return true if this driver accepts the given URL
+     * @exception SQLException Passed through from the underlying PostgreSQL
+     *                driver, should not happen.
      */
-    public boolean acceptsURL(String url) {
+    public boolean acceptsURL(String url) throws SQLException {
         try {
             url = mangleURL(url);
         } catch (SQLException e) {
