This commit is contained in:
22
server/util/ReportRenderTimeOutException.cs
Normal file
22
server/util/ReportRenderTimeOutException.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user