All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.multipart.exceptions.kt Maven / Gradle / Ivy

There is a newer version: 5.41.0.0
Show newest version
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