Mark van Renswoude
bcdb376256
Added test for publish overflows Removed support for Unity Container Changed third party package references to ranges Fixed XML documentation
14 lines
296 B
C#
14 lines
296 B
C#
using System;
|
|
|
|
namespace Tapeti.Flow
|
|
{
|
|
/// <summary>
|
|
/// Raised when an invalid yield point is returned.
|
|
/// </summary>
|
|
public class YieldPointException : Exception
|
|
{
|
|
/// <inheritdoc />
|
|
public YieldPointException(string message) : base(message) { }
|
|
}
|
|
}
|