org.http4k.multipart.exceptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-multipart Show documentation
Show all versions of http4k-multipart Show documentation
Http4k multipart form support
package org.http4k.multipart
import java.io.IOException
internal class ParseError : RuntimeException {
constructor(e: Exception) : super(e)
constructor(message: String) : super(message)
}
internal class AlreadyClosedException : IOException()
internal class StreamTooLongException(message: String) : IOException(message)
internal class TokenNotFoundException(message: String) : IOException(message)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy