source: osm/applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/WMSException.java@ 32556

Last change on this file since 32556 was 32556, checked in by donvip, 8 years ago

checkstyle

File size: 378 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package cadastre_fr;
3
4class WMSException extends Exception {
5 private String message;
6 private static final long serialVersionUID = 1L;
7
8 WMSException(String message) {
9 super();
10 this.message = message;
11 }
12
13 @Override
14 public String getMessage() {
15 return message;
16 }
17}
Note: See TracBrowser for help on using the repository browser.