Files
basic-computer-games/03_Animal/vbnet/Animal.Tests/EndOfInputsException.vb
2022-01-22 22:27:27 +02:00

8 lines
296 B
VB.net

''' <summary>
''' <para>Indicates that there are no more inputs in the MockConsole.</para>
''' We need this while testing, because otherwise the game loop will continue forever, waiting for a nonexistent input.
''' </summary>
Public Class EndOfInputsException
Inherits Exception
End Class