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 * ID for serialization. 021 */ 022 private static final long serialVersionUID = 7552029465180977270L; 023 024 /** 025 * Construct a new LogNoOutputStreamException. 026 * 027 * @param s a message describing the exception 028 */ 029 public LogNoOutputStreamException(String s) { 030 super(s); 031 } 032 033 /** 034 * Construct a new LogNoOutputStreamException. 035 */ 036 public LogNoOutputStreamException() { 037 super(); 038 } 039 }