Add missing file from code config branch

This commit is contained in:
markpollack
2010-12-02 22:34:22 +00:00
parent 2327d41dfa
commit 87a9d293da

View File

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