Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / isa / types / AsmException.java
1 package net.mograsim.machine.isa.types;
2
3 public class AsmException extends Exception
4 {
5         private static final long serialVersionUID = 1L;
6
7         public AsmException()
8         {
9                 super();
10         }
11
12         public AsmException(Throwable cause, String message, boolean enableSuppression, boolean writableStackTrace)
13         {
14                 super(message, cause, enableSuppression, writableStackTrace);
15         }
16
17         public AsmException(Throwable cause, String formatString, Object... formatArgs)
18         {
19                 super(String.format(formatString, formatArgs), cause);
20         }
21
22         public AsmException(String formatString, Object... formatArgs)
23         {
24                 super(String.format(formatString, formatArgs));
25         }
26
27         public AsmException(Throwable cause)
28         {
29                 super(cause);
30         }
31
32 }