From a5d2b2cfb48117773a091b88d43b0624f0225941 Mon Sep 17 00:00:00 2001 From: WangZengHuang <372849177@qq.com> Date: Tue, 8 Jan 2019 18:10:26 +0800 Subject: [PATCH] Remove redundant throws Exception See gh-15647 --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index d4a39609683..1491be19eb1 100755 --- a/README.adoc +++ b/README.adoc @@ -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); }