using System; namespace XGame.Framework.Logger { internal class MMFileOverflowException : Exception { public int Length; public MMFileOverflowException(int length, string message) : base(message) { this.Length = length; } } }