The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / isa / types / AsmException.java
diff --git a/plugins/net.mograsim.machine/src/net/mograsim/machine/isa/types/AsmException.java b/plugins/net.mograsim.machine/src/net/mograsim/machine/isa/types/AsmException.java
new file mode 100644 (file)
index 0000000..8a9d2d0
--- /dev/null
@@ -0,0 +1,32 @@
+package net.mograsim.machine.isa.types;
+
+public class AsmException extends Exception
+{
+       private static final long serialVersionUID = 1L;
+
+       public AsmException()
+       {
+               super();
+       }
+
+       public AsmException(Throwable cause, String message, boolean enableSuppression, boolean writableStackTrace)
+       {
+               super(message, cause, enableSuppression, writableStackTrace);
+       }
+
+       public AsmException(Throwable cause, String formatString, Object... formatArgs)
+       {
+               super(String.format(formatString, formatArgs), cause);
+       }
+
+       public AsmException(String formatString, Object... formatArgs)
+       {
+               super(String.format(formatString, formatArgs));
+       }
+
+       public AsmException(Throwable cause)
+       {
+               super(cause);
+       }
+
+}