diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.RemoteDesktop/MaxDifferencesReachedException.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.RemoteDesktop/MaxDifferencesReachedException.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/MaxDifferencesReachedException.cs b/Software/Visual_Studio/Tango.RemoteDesktop/MaxDifferencesReachedException.cs new file mode 100644 index 000000000..e93a8eff1 --- /dev/null +++ b/Software/Visual_Studio/Tango.RemoteDesktop/MaxDifferencesReachedException.cs @@ -0,0 +1,16 @@ +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.") + { + + } + } +} |
