From 87a9d293da8126390867235872a5c5d3b95c2edc Mon Sep 17 00:00:00 2001 From: markpollack Date: Thu, 2 Dec 2010 22:34:22 +0000 Subject: [PATCH] Add missing file from code config branch --- .../Objects/Factory/Parsing/IProblemReporter.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Spring/Spring.Core/Objects/Factory/Parsing/IProblemReporter.cs diff --git a/src/Spring/Spring.Core/Objects/Factory/Parsing/IProblemReporter.cs b/src/Spring/Spring.Core/Objects/Factory/Parsing/IProblemReporter.cs new file mode 100644 index 00000000..9d265b99 --- /dev/null +++ b/src/Spring/Spring.Core/Objects/Factory/Parsing/IProblemReporter.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Spring.Objects.Factory.Parsing +{ + public interface IProblemReporter + { + void Fatal(Problem problem); + void Warning(Problem problem); + void Error(Problem problem); + } +}