Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZMachineException.cs

12 lines
236 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WPFMachine
{
class ZMachineException : Exception
{
public ZMachineException(String Message) : base(Message) { }
}
}