11 lines
289 B
C#
11 lines
289 B
C#
using System;
|
|
|
|
namespace Tapeti.Flow
|
|
{
|
|
public class YieldPointException : Exception
|
|
{
|
|
public YieldPointException(string message) : base(message) { }
|
|
public YieldPointException(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|
|
}
|