1 /* $Id: BadArgumentsException.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.SOFAnode.Made.CodeGen;3 4 /** Exceptions when accessing TIR.5 * 6 * @author Petr Hnetynka7 */8 public class BadArgumentsException extends CodeGenException {9 public BadArgumentsException() { super(); }10 public BadArgumentsException(String s) { super(s); }11 }12