summaryrefslogtreecommitdiff
path: root/examples/scala-js/javalib/src/main/scala/java/nio/charset/MalformedInputException.scala
blob: 4c91c1b93131a853c31e3e0647655f40e687f6dc (plain) (blame)
1
2
3
4
5
6
7
8
9
package java.nio.charset

class MalformedInputException(
    inputLength: Int) extends CharacterCodingException {
  def getInputLength(): Int = inputLength

  override def getMessage(): String =
    "Input length = " + inputLength
}