1 /* $Id: TIRExceptStorage.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR.Impl;3 4 /* Exception for errors with reading/saving repository from/to disk */5 public class TIRExceptStorage extends Exception {6 public TIRExceptStorage() { super(); }7 public TIRExceptStorage(String s) { super(s); }8 }9