OutOfSpaceException.cs 423 B

12345678910111213141516
  1. using System.IO;
  2. namespace XGame.Framework.Network.Protobuf
  3. {
  4. /// <summary>
  5. /// Indicates that a CodedOutputStream wrapping a flat byte array
  6. /// ran out of space.
  7. /// </summary>
  8. public sealed class OutOfSpaceException : IOException
  9. {
  10. public OutOfSpaceException()
  11. : base("CodedOutputStream was writing to a flat byte array and ran out of space.")
  12. {
  13. }
  14. }
  15. }