mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Remove redundant throws Exception
See gh-15647
This commit is contained in:
committed by
Stephane Nicoll
parent
ed7cc951f3
commit
a5d2b2cfb4
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user