]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/application/Application.java
Added more thrown exceptions + catched some + added getting of SQL warnings into...
[jcore.git] / src / org / mxchange / jcore / application / Application.java
index fdcc4d64dae6ef6a349758c440250d327d3912fc..5a28624c179a1b453d1ca2c4fc7fc7c1327e3b3d 100644 (file)
@@ -38,8 +38,8 @@ public interface Application extends FrameworkInterface {
 
        /**
         * Shutdown the application
-        * @throws java.sql.SQLException If an SQL error occurs
         * @throws java.io.IOException If an IO error occurs
+        * @throws java.sql.SQLException If a SQL error occurs
         */
-       public void doShutdown () throws SQLException, IOException;
+       public void doShutdown () throws IOException, SQLException;
 }