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

net.java.truecommons.io.ClosedStreamException Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
/*
 * Copyright (C) 2005-2012 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.truecommons.io;

import java.io.IOException;
import java.nio.channels.ClosedChannelException;
import javax.annotation.concurrent.ThreadSafe;

/**
 * Indicates that an input or output stream has been closed.
 *
 * @see    ClosedChannelException
 * @author Christian Schlichtherle
 */
@ThreadSafe
public class ClosedStreamException extends IOException {
    private static final long serialVersionUID = 3438364894193766238L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy