source:
osm/applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/WMSException.java@
22230
| Last change on this file since 22230 was 20425, checked in by , 16 years ago | |
|---|---|
| File size: 410 bytes | |
| Line | |
|---|---|
| 1 | // License: GPL. v2 and later. Copyright 2008-2009 by Pieren <pieren3@gmail.com> and others |
| 2 | package cadastre_fr; |
| 3 | |
| 4 | class WMSException extends Exception { |
| 5 | private String message; |
| 6 | private static final long serialVersionUID = 1L; |
| 7 | public WMSException(String message) { |
| 8 | super(); |
| 9 | this.message = message; |
| 10 | } |
| 11 | public String getMessage() { |
| 12 | return message; |
| 13 | } |
| 14 | } |
Note:
See TracBrowser
for help on using the repository browser.
