This commit is contained in:
2021-12-23 17:16:01 +00:00
parent 850906400c
commit 8753c41f6b
4 changed files with 37 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
using System;
namespace AyaNova.Util
{
public class ReportRenderTimeOutException : Exception
{
public ReportRenderTimeOutException()
{
}
public ReportRenderTimeOutException(string message)
: base(message)
{
}
public ReportRenderTimeOutException(string message, Exception inner)
: base(message, inner)
{
}
}
}//eons