1 /* $Id: TIRException.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 4 /** Superclass for all excetions for TIR */5 public class TIRException extends Exception {6 public TIRException() { super(); }7 public TIRException(String s) { super(s); }8 }9