MMFileOverflowException.cs 287 B

1234567891011121314
  1. using System;
  2. namespace XGame.Framework.Logger
  3. {
  4. internal class MMFileOverflowException : Exception
  5. {
  6. public int Length;
  7. public MMFileOverflowException(int length, string message) : base(message)
  8. {
  9. this.Length = length;
  10. }
  11. }
  12. }