Skip to content

Commit

Permalink
Remove redundant throws Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
PeppaLittlePig authored and snicoll committed Jan 8, 2019
1 parent ed7cc95 commit a5d2b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Here is a quick teaser of a complete Spring Boot application in Java:
return "Hello World!";
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
SpringApplication.run(Example.class, args);
}
Expand Down

0 comments on commit a5d2b2c

Please sign in to comment.