*/
package org.mxchange.jcore.database.frontend;
+import java.io.IOException;
+import java.sql.SQLException;
import org.mxchange.jcore.FrameworkInterface;
import org.mxchange.jcore.database.storage.Storeable;
import org.mxchange.jcore.exceptions.BadTokenException;
/**
* Shuts down the database layer
+ * @throws java.sql.SQLException If any SQL error occurs
+ * @throws java.io.IOException If any IO error occurs
*/
- public void doShutdown ();
+ public void doShutdown () throws SQLException, IOException;
}