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