View Javadoc

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