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); + } +}