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