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