15 lines
319 B
C#
15 lines
319 B
C#
using System;
|
|
|
|
namespace Tapeti.Flow
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Raised when an invalid yield point is returned.
|
|
/// </summary>
|
|
public class YieldPointException : Exception
|
|
{
|
|
/// <inheritdoc />
|
|
public YieldPointException(string message) : base(message) { }
|
|
}
|
|
}
|