Remove redundant throws Exception

Closes gh-15645
This commit is contained in:
小呆 2019-01-08 12:42:30 +08:00 committed by Stephane Nicoll
parent 4670770da9
commit e5b2aeb5da
2 changed files with 2 additions and 2 deletions

View File

@ -614,7 +614,7 @@ then add a file named `src/main/java/Example.java` to contain the following code
return "Hello World!";
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
SpringApplication.run(Example.class, args);
}

View File

@ -3080,7 +3080,7 @@ following example:
return application.sources(Application.class);
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}