| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException java.io.CharConversionException org.apache.xerces.impl.io.MalformedByteSequenceException
MalformedByteSequenceException | public class MalformedByteSequenceException extends CharConversionException (Code) | | Signals that a malformed byte sequence was detected
by a java.io.Reader that decodes bytes
of a given encoding into characters.
author: Michael Glavassevich, IBM version: $Id: MalformedByteSequenceException.java 539931 2007-05-20 20:27:43Z mrglavas $ |
serialVersionUID | final static long serialVersionUID(Code) | | Serialization version.
|
MalformedByteSequenceException | public MalformedByteSequenceException(MessageFormatter formatter, Locale locale, String domain, String key, Object[] arguments)(Code) | | Constructs a MalformedByteSequenceException with the given
parameters which may be passed to an error reporter to
generate a localized string for this exception.
Parameters: formatter - The MessageFormatter used for building the message text for this exception. Parameters: locale - The Locale for which messages are to be reported. Parameters: domain - The error domain. Parameters: key - The key of the error message. Parameters: arguments - The replacement arguments for the error message,if needed. |
getArguments | public Object[] getArguments()(Code) | | Returns the replacement arguments for the error
message or null if none exist.
the replacement arguments for the error messageor null if none exist |
getDomain | public String getDomain()(Code) | | Returns the error domain of the error message.
the error domain |
getKey | public String getKey()(Code) | | Returns the key of the error message.
the error key of the error message |
getMessage | public synchronized String getMessage()(Code) | | Returns the localized message for this exception.
the localized message for this exception. |
|
|