public class

MalformedInputException

extends CharConversionException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.CharConversionException
           ↳ sun.io.MalformedInputException

This class is deprecated.
Replaced by java.nio.charset. THIS API WILL BE REMOVED IN J2SE 1.6.

Class Overview

The input string or input byte array to a character conversion contains a malformed sequence of characters or bytes.

Summary

Public Constructors
MalformedInputException()
Constructs a MalformedInputException with no detail message.
MalformedInputException(String s)
Constructs a MalformedInputException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public MalformedInputException ()

Constructs a MalformedInputException with no detail message. A detail message is a String that describes this particular exception.

public MalformedInputException (String s)

Constructs a MalformedInputException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters
s the String containing a detail message