Searched defs:DecodingException (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DBaseEncoding.java144 public static final class DecodingException extends IOException { class in class:BaseEncoding
145 DecodingException(String message) { method in class:BaseEncoding.DecodingException
149 DecodingException(Throwable cause) { method in class:BaseEncoding.DecodingException
247 } catch (DecodingException badInput) {
256 * @throws DecodingException if the input is not a valid encoded string according to this
259 final byte[] decodeChecked(CharSequence chars) throws DecodingException {
268 } catch (DecodingException badInput) {
278 * {@code Reader}. The returned stream throws a {@link DecodingException} upon decoding-specific
543 throw new DecodingException("Unrecognized character: " + ch);
698 throw new DecodingException("Invali
[all...]
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
H A DBaseEncoding.java136 public static final class DecodingException extends IOException { class in class:BaseEncoding
137 DecodingException(String message) { method in class:BaseEncoding.DecodingException
141 DecodingException(Throwable cause) { method in class:BaseEncoding.DecodingException
195 } catch (DecodingException badInput) {
204 * @throws DecodingException if the input is not a valid encoded string according to this
207 final byte[] decodeChecked(CharSequence chars) throws DecodingException {
216 } catch (DecodingException badInput) {
446 throw new DecodingException("Unrecognized character: " + ch);
601 throw new DecodingException("Invalid input length " + readChars);
610 throw new DecodingException("Paddin
[all...]

Completed in 130 milliseconds