The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / standard / memory / MemoryException.java
diff --git a/plugins/net.mograsim.machine/src/net/mograsim/machine/standard/memory/MemoryException.java b/plugins/net.mograsim.machine/src/net/mograsim/machine/standard/memory/MemoryException.java
new file mode 100644 (file)
index 0000000..5183e32
--- /dev/null
@@ -0,0 +1,27 @@
+package net.mograsim.machine.standard.memory;
+
+import net.mograsim.machine.MachineException;
+
+public class MemoryException extends MachineException
+{
+
+       /**
+        * 
+        */
+       private static final long serialVersionUID = 6416796315595721079L;
+
+       public MemoryException()
+       {
+               super();
+       }
+
+       public MemoryException(String message)
+       {
+               super(message);
+       }
+
+       public MemoryException(Throwable cause)
+       {
+               super(cause);
+       }
+}