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

io.quarkus.runtime.BlockingOperationNotAllowedException Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime;

/**
 * Exception that is thrown when a blocking operation is performed on the IO thread.
 */
public class BlockingOperationNotAllowedException extends IllegalStateException {

    public BlockingOperationNotAllowedException() {
        super();
    }

    public BlockingOperationNotAllowedException(String s) {
        super(s);
    }

    public BlockingOperationNotAllowedException(String message, Throwable cause) {
        super(message, cause);
    }

    public BlockingOperationNotAllowedException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy