Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / MachineException.java
1 package net.mograsim.machine;
2
3 public class MachineException extends RuntimeException
4 {
5
6         /**
7          * 
8          */
9         private static final long serialVersionUID = 6224307211078376836L;
10
11         public MachineException()
12         {
13                 super();
14         }
15
16         public MachineException(String message)
17         {
18                 super(message);
19         }
20
21         public MachineException(Throwable cause)
22         {
23                 super(cause);
24         }
25 }