File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/codec Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717package org .apache .commons .codec ;
1818
1919import java .nio .charset .Charset ;
20- import java .nio .charset .UnsupportedCharsetException ;
2120
2221/**
2322 * Charsets required of every implementation of the Java platform.
@@ -81,7 +80,7 @@ public static Charset toCharset(Charset charset) {
8180 * @param charset
8281 * The name of the requested charset, may be null.
8382 * @return a Charset for the named charset
84- * @throws UnsupportedCharsetException
83+ * @throws java.nio.charset. UnsupportedCharsetException
8584 * If the named charset is unavailable
8685 */
8786 public static Charset toCharset (String charset ) {
Original file line number Diff line number Diff line change 1818package org .apache .commons .codec .binary ;
1919
2020import java .nio .charset .Charset ;
21- import java .nio .charset .UnsupportedCharsetException ;
2221
2322import org .apache .commons .codec .BinaryDecoder ;
2423import org .apache .commons .codec .BinaryEncoder ;
@@ -207,7 +206,7 @@ public Hex(Charset charset) {
207206 *
208207 * @param charsetName
209208 * the charset name.
210- * @throws UnsupportedCharsetException
209+ * @throws java.nio.charset. UnsupportedCharsetException
211210 * If the named charset is unavailable
212211 * @since 1.4
213212 * @since 1.7 throws UnsupportedCharsetException if the named charset is unavailable
Original file line number Diff line number Diff line change 1919
2020import java .io .UnsupportedEncodingException ;
2121import java .nio .charset .Charset ;
22- import java .nio .charset .UnsupportedCharsetException ;
2322
2423import org .apache .commons .codec .Charsets ;
2524import org .apache .commons .codec .DecoderException ;
@@ -75,7 +74,7 @@ public BCodec(final Charset charset) {
7574 *
7675 * @param charsetName
7776 * the default charset to use.
78- * @throws UnsupportedCharsetException
77+ * @throws java.nio.charset. UnsupportedCharsetException
7978 * If the named charset is unavailable
8079 * @since 1.7 throws UnsupportedCharsetException if the named charset is unavailable
8180 * @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
Original file line number Diff line number Diff line change 1919
2020import java .io .UnsupportedEncodingException ;
2121import java .nio .charset .Charset ;
22- import java .nio .charset .UnsupportedCharsetException ;
2322import java .util .BitSet ;
2423
2524import org .apache .commons .codec .Charsets ;
@@ -136,7 +135,7 @@ public QCodec(final Charset charset) {
136135 *
137136 * @param charsetName
138137 * the charset to use.
139- * @throws UnsupportedCharsetException
138+ * @throws java.nio.charset. UnsupportedCharsetException
140139 * If the named charset is unavailable
141140 * @since 1.7 throws UnsupportedCharsetException if the named charset is unavailable
142141 * @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
Original file line number Diff line number Diff line change 2020import java .io .ByteArrayOutputStream ;
2121import java .io .UnsupportedEncodingException ;
2222import java .nio .charset .Charset ;
23- import java .nio .charset .UnsupportedCharsetException ;
2423import java .util .BitSet ;
2524
2625import org .apache .commons .codec .BinaryDecoder ;
@@ -111,7 +110,7 @@ public QuotedPrintableCodec(Charset charset) {
111110 *
112111 * @param charsetName
113112 * the default string charset to use.
114- * @throws UnsupportedCharsetException
113+ * @throws java.nio.charset. UnsupportedCharsetException
115114 * If the named charset is unavailable
116115 * @since 1.7 throws UnsupportedCharsetException if the named charset is unavailable
117116 */
You can’t perform that action at this time.
0 commit comments