2017-02-05 22:22:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Flow
|
|
|
|
|
{
|
2019-08-15 09:26:55 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised when an invalid yield point is returned.
|
|
|
|
|
/// </summary>
|
2017-02-05 22:22:34 +00:00
|
|
|
|
public class YieldPointException : Exception
|
|
|
|
|
{
|
2019-08-15 09:26:55 +00:00
|
|
|
|
/// <inheritdoc />
|
2017-02-05 22:22:34 +00:00
|
|
|
|
public YieldPointException(string message) : base(message) { }
|
|
|
|
|
}
|
|
|
|
|
}
|