package log;

import java.io.IOException;

/**
  * Exception thrown in Log.
  *
  * <p>LogNoOutputStreamException indicates that there was no output stream to
  * log to.</p>
  *
  * @see Log
  *
  * @author Steffen Zschaler
  * @version 1.0
  * @since v1.0
  */
public class LogNoOutputStreamException extends IOException {

  /**
    * Construct a new LogNoOutputStreamException.
    *
    * @param s a message describing the exception
    */
  public LogNoOutputStreamException (String s) {
    super(s);
  }

  /**
    * Construct a new LogNoOutputStreamException.
    */
  public LogNoOutputStreamException() {
    super();
  }
}