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

org.jetbrains.kotlinx.jupyter.streams.DisabledStdinInputStream.kt Maven / Gradle / Ivy

package org.jetbrains.kotlinx.jupyter.streams

import java.io.IOException
import java.io.InputStream

object DisabledStdinInputStream : InputStream() {
    override fun read(): Int {
        throw IOException("Input from stdin is unsupported by the client")
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy