net.java.truecommons.io.ClosedStreamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truecommons-io Show documentation
Show all versions of truecommons-io Show documentation
Provides common I/O components.
/*
* 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