source: josm/trunk/src/org/openstreetmap/josm/io/IllegalDataException.java@ 2876

Last change on this file since 2876 was 2851, checked in by jttt, 14 years ago

Added progress monitor to JpgImporter, allow to cancel importing

File size: 466 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4public class IllegalDataException extends Exception{
5
6 public IllegalDataException() {
7 super();
8 }
9
10 public IllegalDataException(String message, Throwable cause) {
11 super(message, cause);
12 }
13
14 public IllegalDataException(String message) {
15 super(message);
16 }
17
18 public IllegalDataException(Throwable cause) {
19 super(cause);
20 }
21
22}
Note: See TracBrowser for help on using the repository browser.