22 lines
426 B
C#
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 |