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

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-09 01:28:06 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-09 01:28:06 +0300
commit3a6e08981751fe0758464a9e139ef545e5df5afa (patch)
treee4ebb466f26c822ebdd4dd58166506728d296ac3 /UnsupportedMapperException.cs
parent495e534e90a68c490d0b152e26d6b8fe7bbcef3c (diff)
Many fixes, much more stable now. Version 2.02.
Diffstat (limited to 'UnsupportedMapperException.cs')
-rw-r--r--UnsupportedMapperException.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/UnsupportedMapperException.cs b/UnsupportedMapperException.cs
new file mode 100644
index 00000000..5929114a
--- /dev/null
+++ b/UnsupportedMapperException.cs
@@ -0,0 +1,17 @@
+using com.clusterrr.Famicom;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace com.clusterrr.hakchi_gui
+{
+ public class UnsupportedMapperException : Exception
+ {
+ public readonly NesFile ROM;
+ public UnsupportedMapperException(NesFile nesFile)
+ {
+ ROM = nesFile;
+ }
+ }
+}