1 package org.paneris.bibliomania.fti;
2
3 public class IDTooLargeException extends FTIException {
4 /**
5 *
6 */
7 private static final long serialVersionUID = 1L;
8 public int limit;
9
10 public IDTooLargeException(int limit) {
11 this.limit = limit;
12 }
13
14 public String getMessage() {
15 return "There were more different words in the index than the limit of " +
16 limit + " --- contact the developers if this really needs to be " +
17 "raised";
18 }
19 }