Mark van Renswoude
74985e45de
Some are silly, like the "member not used" for public interfaces. The comments everywhere are ugly, sorry, but it keeps the possibly important issues visible without a dependency on some ReSharper annotations package.
10 lines
176 B
C#
10 lines
176 B
C#
using System;
|
|
|
|
namespace Tapeti.Flow
|
|
{
|
|
public class YieldPointException : Exception
|
|
{
|
|
public YieldPointException(string message) : base(message) { }
|
|
}
|
|
}
|