using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.RemoteDesktop { public class MaxDifferencesReachedException : Exception { public MaxDifferencesReachedException() : base("The number of differences exceeded the maximum value. You should return the whole frame.") { } } }