VOTableException.java
9.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
* This file is a part of EpnTAPClient.
* This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
* See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
* Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
*
* This program is free software: you can
* redistribute it and/or modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or (at your option) any later
* version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details. You should have received a copy of
* the GNU General Public License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
package eu.omp.irap.vespa.epntapclient.votable.controller;
import java.io.IOException;
/**
* VOTableException is the global exception for all the VOTable application. All other exceptions
* should extend it.
*
* @author N. Jourdane
*/
public abstract class VOTableException extends Exception {
/** The serial version UID. */
private static final long serialVersionUID = 1L;
/**
* @param message The message describing the exception displayed in the error dialog.
*/
public VOTableException(String message) {
super(message);
}
/**
* @param message The message describing the exception displayed in the error dialog.
* @param e The exception thrown.
*/
public VOTableException(String message, Exception e) {
super(message, e);
}
/** Abstract exception for when the application can not send the query. */
public abstract static class CantSendQueryException extends VOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param message The message describing the exception displayed in the error dialog.
*/
public CantSendQueryException(String message) {
super(message);
}
/**
* @param message The message describing the exception displayed in the error dialog.
* @param e The exception thrown.
*/
public CantSendQueryException(String message, Exception e) {
super(message, e);
}
/** The URL is not correctly formated. */
public static class MalformedURLException extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param e The exception thrown.
*/
public MalformedURLException(String url, Exception e) {
super("The URL " + url + " is not correctly formated.", e);
}
}
/** The URL is not correctly formated. */
public static class CantWriteQueryResultException extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param e The exception thrown.
*/
public CantWriteQueryResultException(String path, Exception e) {
super("Can not write the query result in " + path + ".", e);
}
}
/** The URL is not correctly formated. */
public static class UnsupportedParamEncodingException extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param e The exception thrown.
*/
public UnsupportedParamEncodingException(String key, String value, Exception e) {
super("The URL parameter " + key + " with value '" + value
+ "' is not correctly encoded.", e);
}
}
/** Can not print the result in the file. */
public static class CantPrintRequestResultException extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param resultFilePath The path of the file where the query results should be stored.
* @param e The exception thrown.
*/
public CantPrintRequestResultException(String resultFilePath, IOException e) {
super("Can not print the result in the file " + resultFilePath, e);
}
}
/** Can not open an HTTP connection to the specified URL. */
public static class CantOpenConnectionException extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param e The exception thrown.
*/
public CantOpenConnectionException(String url, IOException e) {
super("Can not open an HTTP connection to " + url, e);
}
}
/** Can not get the server response code for the request. */
public static class CantGetResponseCode extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param e The exception thrown.
*/
public CantGetResponseCode(String url, IOException e) {
super("Can not get the server response code for the request " + url, e);
}
}
/** The server returned the bad response code (but not 400). */
public static class BadResponseCodeException extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param responseCode The HTTP GET response code, which is bad.
*/
public BadResponseCodeException(String url, int responseCode) {
super("The server returned the bad response code `" + responseCode
+ "` for the request " + url);
}
}
/** Can not get the input stream of the result, neither the error stream. */
public static class CantGetErrorStream extends CantSendQueryException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param url The url sent to the server.
* @param e The exception thrown.
*/
public CantGetErrorStream(String url, IOException e) {
super("Can not get the input stream of the result, neither the error stream "
+ "for the request " + url, e);
}
}
}
/** Abstract exception for when the application can not display the VOTable. */
public abstract static class CantDisplayVOTableException extends VOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param message The message describing the exception displayed in the error dialog.
* @param e The exception thrown.
*/
public CantDisplayVOTableException(String message, Exception e) {
super(message, e);
}
/**
* @param message The message describing the exception displayed in the error dialog.
*/
public CantDisplayVOTableException(String message) {
super(message);
}
/** Can not parse the VOTable because it doesn't match with the VOTable schema. */
public static class VOTableIsNotValidException extends CantDisplayVOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param voTablePath The path of the VOTable.
* @param e The exception thrown.
*/
public VOTableIsNotValidException(String voTablePath, Exception e) {
super("Can not parse the VOTable because it doesn't match with the VOTable schema."
+ "\n See the VOTable file for more details: " + voTablePath, e);
}
}
/** VOTable with more than one resource are not yet supported. */
public static class SeveralResourcesException extends CantDisplayVOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param voTablePath The path of the VOTable.
*/
public SeveralResourcesException(String voTablePath) {
super("VOTable with more than one resource are not yet supported. \n"
+ "See VOTable file for more informations: " + voTablePath);
}
}
/** VOTable with more than one resource are not yet supported. */
public static class SeveralTablesException extends CantDisplayVOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param voTablePath The path of the VOTable.
*/
public SeveralTablesException(String voTablePath) {
super("VOTable with more than one resource are not yet supported. \n"
+ "See VOTable file for more informations: " + voTablePath);
}
}
/** Can not change schema location on the VOTable file. */
public static class CantModifyVOTableException extends CantDisplayVOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param voTablePath The path of the VOTable.
* @param e The exception thrown.
*/
public CantModifyVOTableException(String voTablePath, Exception e) {
super("Can not change schema location on the VOTable file: " + voTablePath, e);
}
}
/** There is an error in the VOTable. */
public static class ErrorMessageInVOTableException extends CantDisplayVOTableException {
/** */
private static final long serialVersionUID = 1L;
/**
* @param errorInfo The information about the error, which comes from the VOTable itself
* from the "INFO" node.
*/
public ErrorMessageInVOTableException(String errorInfo) {
super("There is an error in the VOTable:\n" + errorInfo
+ "\nPlease check your ADQL query.");
}
}
}
}