source:
osm/applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/WMSException.java@
33514
Last change on this file since 33514 was 32556, checked in by , 9 years ago | |
---|---|
File size: 378 bytes |
Line | |
---|---|
1 | // License: GPL. For details, see LICENSE file. |
2 | package cadastre_fr; |
3 | |
4 | class 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.