The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / isa / types / AsmNumberFormatException.java
1 package net.mograsim.machine.isa.types;
2
3 public class AsmNumberFormatException extends AsmException
4 {
5         private static final long serialVersionUID = 1L;
6
7         public AsmNumberFormatException(Exception cause, String message, Object... formatArgs)
8         {
9                 super(cause, message, formatArgs);
10         }
11
12         public AsmNumberFormatException(String message, Object... formatArgs)
13         {
14                 super(message, formatArgs);
15         }
16 }