1 /** 2 * Logback: the reliable, generic, fast and flexible logging framework. 3 * 4 * Copyright (C) 1999-2006, QOS.ch 5 * 6 * This library is free software, you can redistribute it and/or modify it under 7 * the terms of the GNU Lesser General Public License as published by the Free 8 * Software Foundation. 9 */ 10 11 package ch.qos.logback.core.rolling; 12 13 14 /** 15 * A RolloverFailure occurs if, for whatever reason a rollover fails. 16 * 17 * @author Ceki Gulcu 18 */ 19 public class RolloverFailure extends Exception { 20 21 private static final long serialVersionUID = -4407533730831239458L; 22 23 public RolloverFailure(String msg) { 24 super(msg); 25 } 26 }