View Javadoc

1   package org.paneris.bibliomania;
2   
3   import org.melati.poem.Table;
4   
5   public class TooManyAuthorsException extends TroidFTILimitsException {
6       private static final long serialVersionUID = 1L;
7   
8       private Table table;
9       
10      public TooManyAuthorsException(Table table, int troid, int limit) {
11        super(troid, limit);
12        this.table = table;
13      }
14  
15      public Table getTable() {
16        return table;
17      }
18    }