forked from liza/Questionable
21 lines
340 B
C#
21 lines
340 B
C#
using System;
|
|
|
|
namespace Questionable.Controller.Steps;
|
|
|
|
public class TaskException : Exception
|
|
{
|
|
public TaskException()
|
|
{
|
|
}
|
|
|
|
public TaskException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public TaskException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|