//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//------------------------------------------------------------------------------
namespace System.Xml.Xsl {
internal interface IErrorHelper {
void ReportError(string res, params string[] args);
void ReportWarning(string res, params string[] args);
}
}