| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException com.Ostermiller.util.Base64DecodingException
Base64DecodingException | public class Base64DecodingException extends IOException (Code) | | Exception that is thrown when an unexpected character is encountered
during Base64 decoding. One could catch this exception and use
the unexpected character for some other purpose such as including it
with data that comes at the end of a Base64 encoded section of an email
message.
author: Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities since: ostermillerutils 1.00.00 |
Method Summary | |
public char | getChar() Get the character that caused this error. |
Base64DecodingException | public Base64DecodingException(String message, char c)(Code) | | Construct an new exception.
Parameters: message - message later to be returned by a getMessage() call. Parameters: c - character that caused this error. since: ostermillerutils 1.00.00 |
getChar | public char getChar()(Code) | | Get the character that caused this error.
the character that caused this error. since: ostermillerutils 1.00.00 |
|
|
|