Commit a5d2b2cf authored by WangZengHuang's avatar WangZengHuang Committed by Stephane Nicoll

Remove redundant throws Exception

See gh-15647
parent ed7cc951
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment