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

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

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