The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / standard / memory / MemoryException.java
1 package net.mograsim.machine.standard.memory;
2
3 import net.mograsim.machine.MachineException;
4
5 public class MemoryException extends MachineException
6 {
7
8         /**
9          * 
10          */
11         private static final long serialVersionUID = 6416796315595721079L;
12
13         public MemoryException()
14         {
15                 super();
16         }
17
18         public MemoryException(String message)
19         {
20                 super(message);
21         }
22
23         public MemoryException(Throwable cause)
24         {
25                 super(cause);
26         }
27 }