Class LogFileOverflowException

  • All Implemented Interfaces:
    java.io.Serializable

    public class LogFileOverflowException
    extends LogException
    Checked exception thrown when the Logger attempts to switch to an alternate log file that contains the active mark.
    See Also:
    Logger.mark(long), Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) static long serialVersionUID
      Determines if a de-serialized file is compatible with this class.
    • Constructor Summary

      Constructors 
      Constructor Description
      LogFileOverflowException()
      Constructs an instance of this class.
      LogFileOverflowException​(long activeMark, long highMark, java.io.File lf)
      Construct an exception with message describing the problem
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) static java.lang.String format​(long activeMark, long highMark, java.io.File lf)  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • serialVersionUID

        static final long serialVersionUID
        Determines if a de-serialized file is compatible with this class. Maintainers must change this value if and only if the new version of this class is not compatible with old versions. See Sun docs for details. Not necessary to include in first version of the class, but included here as a reminder of its importance.
        See Also:
        Constant Field Values
    • Constructor Detail

      • LogFileOverflowException

        public LogFileOverflowException()
        Constructs an instance of this class.
      • LogFileOverflowException

        public LogFileOverflowException​(long activeMark,
                                        long highMark,
                                        java.io.File lf)
        Construct an exception with message describing the problem
        Parameters:
        activeMark -
        highMark -
    • Method Detail

      • format

        static java.lang.String format​(long activeMark,
                                       long highMark,
                                       java.io.File lf)