001    package log;
002    
003    import java.io.IOException;
004    
005    /**
006     * Exception thrown in Log.
007     *
008     * <p>LogNoOutputStreamException indicates that there was no output stream to
009     * log to.</p>
010     *
011     * @see Log
012     *
013     * @author Steffen Zschaler
014     * @version 1.0
015     * @since v1.0
016     */
017    public class LogNoOutputStreamException extends IOException {
018    
019        /**
020         * Construct a new LogNoOutputStreamException.
021         *
022         * @param s a message describing the exception
023         */
024        public LogNoOutputStreamException(String s) {
025            super(s);
026        }
027    
028        /**
029         * Construct a new LogNoOutputStreamException.
030         */
031        public LogNoOutputStreamException() {
032            super();
033        }
034    }