Files
raven/server/AyaNova/util/ReportRenderTimeOutException.cs
2021-12-23 17:16:01 +00:00

22 lines
426 B
C#

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