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

com.threerings.nexus.io.StreamException Maven / Gradle / Ivy

The newest version!
//
// Nexus Core - a framework for developing distributed applications
// http://github.com/threerings/nexus/blob/master/LICENSE

package com.threerings.nexus.io;

/**
 * An exception thrown if an error occurs when reading or writing {@link Streamable} data.
 */
public class StreamException extends RuntimeException
{
    public StreamException (String message) {
        super(message);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy