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

com.facebook.presto.jdbc.internal.airlift.http.client.RuntimeIOException Maven / Gradle / Ivy

There is a newer version: 0.289
Show newest version
package com.facebook.presto.jdbc.internal.airlift.http.client;

import java.io.IOException;

public class RuntimeIOException
        extends RuntimeException
{
    public RuntimeIOException(IOException cause)
    {
        super(cause);
    }

    public RuntimeIOException(String message, IOException cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy