CntrlComparison parsing

This commit is contained in:
2015-12-04 10:15:51 -05:00
parent 4d46f206ac
commit 685e8c8658
39 changed files with 820 additions and 491 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace LeafWeb.Core.Utility
{
public class ParseException : Exception
{
public ParseException(string message)
: base(message)
{
}
}
}