- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.nio.charset.CharacterCodingException
-
- java.nio.charset.MalformedInputException
-
- All Implemented Interfaces:
-
Serializable
public class MalformedInputException extends CharacterCodingException
当输入字节序列对于给定的字符集不合法时,检查的异常抛出,或输入字符序列不是合法的16位Unicode序列。- 从以下版本开始:
- 1.4
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 MalformedInputException(int inputLength)
构造一个给定长度的MalformedInputException
。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getInputLength()
返回输入的长度。String
getMessage()
返回消息。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
方法详细信息
-
getInputLength
public int getInputLength()
返回输入的长度。- 结果
- 输入的长度
-
getMessage
public String getMessage()
返回消息。- 重写:
-
getMessage
在Throwable
- 结果
- 消息
-
-