diff options
author | Submohr <zippoccoto@gmail.com> | 2022-04-01 14:54:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 14:54:22 -0500 |
commit | c489a99bdd2e64f16685189e4c310bca64e667af (patch) | |
tree | 07e203a073ce15f5bd22773839ac6a3a9c6712dc /website/templates | |
parent | e1b99751850bc47dd17e983b8f7255fd9b741aca (diff) | |
download | lombok-c489a99bdd2e64f16685189e4c310bca64e667af.tar.gz lombok-c489a99bdd2e64f16685189e4c310bca64e667af.tar.bz2 lombok-c489a99bdd2e64f16685189e4c310bca64e667af.zip |
Fix typo in StandardException documentation
Closed parenthesis in the StandardException page of the website.
Diffstat (limited to 'website/templates')
-rw-r--r-- | website/templates/features/experimental/StandardException.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/templates/features/experimental/StandardException.html b/website/templates/features/experimental/StandardException.html index c7fc40fe..fa4c704d 100644 --- a/website/templates/features/experimental/StandardException.html +++ b/website/templates/features/experimental/StandardException.html @@ -10,7 +10,7 @@ <@f.overview> <p> - Put this annotation on your own exception types (new classes that <code>extends Exception</code> or anything else that inherits from <code>Throwable</code>. This annotation will then generate up to 4 constructors: + Put this annotation on your own exception types (new classes that <code>extends Exception</code> or anything else that inherits from <code>Throwable</code>). This annotation will then generate up to 4 constructors: </p><ul> <li>A no-args constructor (<code>MyException()</code>), representing no message, and no cause.</li> <li>A message-only constructor (<code>MyException(String message)</code>), representing the provided message, and no cause.</li> |