mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-12-22 07:42:47 +01:00
8 lines
139 B
C#
8 lines
139 B
C#
using System.Text;
|
|
|
|
namespace BrotliLib.Exceptions{
|
|
interface IExceptionContext{
|
|
void Explain(StringBuilder build);
|
|
}
|
|
}
|