Remove redundant throws clause

This commit is contained in:
Anosh D. Ullenius
2022-06-17 20:29:52 +02:00
parent 245f5386ce
commit 258d85b934
5 changed files with 7 additions and 9 deletions
@@ -55,9 +55,8 @@ public class GetdownApp
* Runs Getdown as an application, using the arguments supplie as {@code argv}.
* @return the {@code Getdown} instance that is running. {@link Getdown#run} will have been
* called on it.
* @throws Exception if anything goes wrong starting Getdown.
*/
public static Getdown start (String[] argv) throws Exception {
public static Getdown start (String[] argv) {
List<EnvConfig.Note> notes = new ArrayList<>();
EnvConfig envc = EnvConfig.create(argv, notes);
if (envc == null) {