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

ai.platon.pulsar.skeleton.crawl.protocol.ProtocolException.kt Maven / Gradle / Ivy

The newest version!

package ai.platon.pulsar.skeleton.crawl.protocol

open class ProtocolException : Exception {
    constructor() : super()
    constructor(message: String) : super(message)
    constructor(message: String, cause: Throwable) : super(message, cause)
    constructor(cause: Throwable) : super(cause)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy