Finished MPROM support. Fixes #10
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / standard / memory / BitVectorMemoryParseException.java
1 package net.mograsim.machine.standard.memory;
2
3 import net.mograsim.machine.MachineException;
4
5 public class BitVectorMemoryParseException extends MachineException
6 {
7
8         /**
9          * 
10          */
11         private static final long serialVersionUID = 6820101808901789906L;
12
13         public BitVectorMemoryParseException()
14         {
15                 super();
16         }
17
18         public BitVectorMemoryParseException(String message)
19         {
20                 super(message);
21         }
22
23         public BitVectorMemoryParseException(Throwable cause)
24         {
25                 super(cause);
26         }
27
28 }