mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
13 lines
273 B
C#
13 lines
273 B
C#
using System;
|
|
|
|
namespace Hammurabi
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the game cannot continue due to the player's extreme
|
|
/// incompetance and/or unserious attitude!
|
|
/// </summary>
|
|
public class GreatOffence : InvalidOperationException
|
|
{
|
|
}
|
|
}
|