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

Last change on this file since 20425 was 20425, checked in by pieren, 15 years ago

the missing file

File size: 410 bytes
Line 
1// License: GPL. v2 and later. Copyright 2008-2009 by Pieren <pieren3@gmail.com> and others
2package cadastre_fr;
3
4class 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.