Files
sockeye/server/util/ReportRenderTimeOutException.cs
2022-12-16 06:01:23 +00:00

22 lines
426 B
C#

using System;
namespace Sockeye.Util
{
public class ReportRenderTimeOutException : Exception
{
public ReportRenderTimeOutException()
{
}
public ReportRenderTimeOutException(string message)
: base(message)
{
}
public ReportRenderTimeOutException(string message, Exception inner)
: base(message, inner)
{
}
}
}//eons