]> git.mxchange.org Git - jcore.git/commitdiff
Added more thrown exceptions
authorRoland Haeder <roland@mxchange.org>
Wed, 12 Aug 2015 18:11:09 +0000 (20:11 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 12 Aug 2015 18:11:09 +0000 (20:11 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/application/Application.java

index 1de9965597ab045b982fd0b9367b79946fe259e5..fdcc4d64dae6ef6a349758c440250d327d3912fc 100644 (file)
@@ -16,6 +16,8 @@
  */
 package org.mxchange.jcore.application;
 
+import java.io.IOException;
+import java.sql.SQLException;
 import org.mxchange.jcore.FrameworkInterface;
 
 /**
@@ -36,6 +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
         */
-       public void doShutdown ();
+       public void doShutdown () throws SQLException, IOException;
 }