4fb4af6d86be6c61a3cfe5af1cc4e74417d5f056
[Mograsim.git] / 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 }