Refactored MicroprogramMemory to MicroInstructionMemory
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / mi / MicroInstructionMemoryParseException.java
diff --git a/net.mograsim.machine/src/net/mograsim/machine/mi/MicroInstructionMemoryParseException.java b/net.mograsim.machine/src/net/mograsim/machine/mi/MicroInstructionMemoryParseException.java
new file mode 100644 (file)
index 0000000..674e418
--- /dev/null
@@ -0,0 +1,28 @@
+package net.mograsim.machine.mi;
+
+import net.mograsim.machine.MachineException;
+
+public class MicroInstructionMemoryParseException extends MachineException
+{
+
+       /**
+        * 
+        */
+       private static final long serialVersionUID = 6820101808901789906L;
+
+       public MicroInstructionMemoryParseException()
+       {
+               super();
+       }
+
+       public MicroInstructionMemoryParseException(String message)
+       {
+               super(message);
+       }
+
+       public MicroInstructionMemoryParseException(Throwable cause)
+       {
+               super(cause);
+       }
+       
+}