Skip to content

Commit

Permalink
Fix Javadoc for thrown exceptions
Browse files Browse the repository at this point in the history
Co-authored-by: Jerry James <loganjerry@gmail.com>
  • Loading branch information
zbynek and jamesjer committed Feb 4, 2024
1 parent aed1a05 commit 7d710c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/templates/JavaCharStream.template
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ class JavaCharStream {
* @param encoding the character encoding of the data stream.
* @param startline line number of the first character of the stream, mostly for error messages.
* @param startcolumn column number of the first character of the stream.
* @throws UnsupportedEncodingException encoding is invalid or unsupported.
* @throws java.io.UnsupportedEncodingException encoding is invalid or unsupported.
*/
public JavaCharStream(java.io.InputStream dstream, String encoding, int startline,
int startcolumn) throws java.io.UnsupportedEncodingException {
Expand All @@ -565,7 +565,7 @@ class JavaCharStream {
*
* @param dstream the underlying data source.
* @param encoding the character encoding of the data stream.
* @throws UnsupportedEncodingException encoding is invalid or unsupported.
* @throws java.io.UnsupportedEncodingException encoding is invalid or unsupported.
*/
public JavaCharStream(java.io.InputStream dstream, String encoding)
throws java.io.UnsupportedEncodingException {
Expand Down Expand Up @@ -612,7 +612,7 @@ class JavaCharStream {
* @param encoding the character encoding of the data stream.
* @param startline line number of the first character of the stream, mostly for error messages.
* @param startcolumn column number of the first character of the stream.
* @throws UnsupportedEncodingException encoding is invalid or unsupported.
* @throws java.io.UnsupportedEncodingException encoding is invalid or unsupported.
*/
public void ReInit(java.io.InputStream dstream, String encoding, int startline,
int startcolumn) throws java.io.UnsupportedEncodingException {
Expand All @@ -634,7 +634,7 @@ class JavaCharStream {
*
* @param dstream the underlying data source.
* @param encoding the character encoding of the data stream.
* @throws UnsupportedEncodingException encoding is invalid or unsupported.
* @throws java.io.UnsupportedEncodingException encoding is invalid or unsupported.
*/
public void ReInit(java.io.InputStream dstream, String encoding)
throws java.io.UnsupportedEncodingException {
Expand Down

0 comments on commit 7d710c9

Please sign in to comment.