From 113eaf4d8a37e212b8528d41e400b346ce9f51d2 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 8 May 2018 17:01:22 +0300 Subject: Added improvements to stubs UI. Implemented Bug Reporter engine! --- .../Visual_Studio/Tango.Scripting/CompilerError.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Software/Visual_Studio/Tango.Scripting/CompilerError.cs (limited to 'Software/Visual_Studio/Tango.Scripting/CompilerError.cs') diff --git a/Software/Visual_Studio/Tango.Scripting/CompilerError.cs b/Software/Visual_Studio/Tango.Scripting/CompilerError.cs new file mode 100644 index 000000000..367aba123 --- /dev/null +++ b/Software/Visual_Studio/Tango.Scripting/CompilerError.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Scripting +{ + public class CompilerError + { + public String Error { get; set; } + + public override string ToString() + { + return Error; + } + } +} -- cgit v1.3.1