Leaf Input Parsing complete

This commit is contained in:
2015-11-20 11:39:23 -05:00
parent 750b2aee7b
commit 1fb73b9f76
26 changed files with 1294 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace LeafWeb.Core.Services
{
public class ParseException : Exception
{
public ParseException(string message)
: base(message)
{
}
}
}