View Javadoc

1   package org.paneris.bibliomania.fti;
2   
3   import org.melati.util.MelatiRuntimeException;
4   
5   public class FTIException extends MelatiRuntimeException {
6     private static final long serialVersionUID = 1L;
7   
8     public FTIException(Exception problem) {
9       super(problem);
10    }
11  
12    public FTIException() {
13      this(null);
14    }
15  
16    public String getMessage() {
17      return "A problem arose with the FTI subsystem" +
18             (subException == null ? "" : "\n" + subException.getMessage());
19    }
20  }