Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GameGenieFormatException.cs « GameGenie - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e515d492514e7ec94e126418b0c7681d2efe985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace com.clusterrr.hakchi_gui
{
    public class GameGenieFormatException : Exception
    {
        public readonly string Code;
        public GameGenieFormatException(string code)
            : base(string.Format("Invalid code \"{0}\"", code))
        {
            Code = code;
        }
    }
}