2017-02-07 15:13:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Flow
|
|
|
|
|
{
|
2019-08-15 09:26:55 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised when a response is expected to end a flow, but none was provided.
|
|
|
|
|
/// </summary>
|
2017-02-07 15:13:33 +00:00
|
|
|
|
public class ResponseExpectedException : Exception
|
|
|
|
|
{
|
2019-08-15 09:26:55 +00:00
|
|
|
|
/// <inheritdoc />
|
2017-02-07 15:13:33 +00:00
|
|
|
|
public ResponseExpectedException(string message) : base(message) { }
|
|
|
|
|
}
|
|
|
|
|
}
|