Statistics
| Revision:

root / trunk / extensions / extTableSummarize / src / org / gvsig / app / documents / table / summarize / exceptions / GroupByFieldNotExistsException.java @ 27644

History | View | Annotate | Download (1.55 KB)

1
/* gvSIG. Sistema de Informacion Geografica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2009 IVER T.I.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  IVER T.I.
22
 *   C/ Lerida, 20
23
 *   46009 Valencia
24
 *   SPAIN
25
 *   http://www.iver.es
26
 *   dac@iver.es
27
 *   +34 963163400
28
 *   
29
 *  or
30
 *  
31
 *  Generalitat Valenciana
32
 *   Conselleria d'Infraestructures i Transport
33
 *   Av. Blasco Iba?ez, 50
34
 *   46010 VALENCIA
35
 *   SPAIN
36
 */
37
package org.gvsig.app.documents.table.summarize.exceptions;
38

    
39
public class GroupByFieldNotExistsException extends Exception {
40

    
41
        public GroupByFieldNotExistsException() {
42
                super();
43
        }
44

    
45
        public GroupByFieldNotExistsException(String message, Throwable cause) {
46
                super(message, cause);
47
        }
48

    
49
        public GroupByFieldNotExistsException(String message) {
50
                super(message);
51
        }
52

    
53
        public GroupByFieldNotExistsException(Throwable cause) {
54
                super(cause);
55
        }
56
        
57
}