using System.IO; namespace XGame.Framework.Network.Protobuf { /// /// Indicates that a CodedOutputStream wrapping a flat byte array /// ran out of space. /// public sealed class OutOfSpaceException : IOException { public OutOfSpaceException() : base("CodedOutputStream was writing to a flat byte array and ran out of space.") { } } }