| 1 | /**
|
|---|
| 2 | *
|
|---|
| 3 | */
|
|---|
| 4 | package org.openstreetmap.gui.jmapviewer.tilesources;
|
|---|
| 5 |
|
|---|
| 6 | /**
|
|---|
| 7 | * Required Exception for encountering parse exceptions or invalid nodes
|
|---|
| 8 | * while traversing xml documents retrieved from tile sources.
|
|---|
| 9 | *
|
|---|
| 10 | * @author Jason Huntley
|
|---|
| 11 | *
|
|---|
| 12 | */
|
|---|
| 13 | public class TileLoadException extends Exception {
|
|---|
| 14 |
|
|---|
| 15 | /**
|
|---|
| 16 | *
|
|---|
| 17 | */
|
|---|
| 18 | private static final long serialVersionUID = 2994141843711406304L;
|
|---|
| 19 |
|
|---|
| 20 | /**
|
|---|
| 21 | *
|
|---|
| 22 | */
|
|---|
| 23 | public TileLoadException() {
|
|---|
| 24 |
|
|---|
| 25 | }
|
|---|
| 26 |
|
|---|
| 27 | /**
|
|---|
| 28 | * @param arg0
|
|---|
| 29 | */
|
|---|
| 30 | public TileLoadException(String arg0) {
|
|---|
| 31 | super(arg0);
|
|---|
| 32 |
|
|---|
| 33 | }
|
|---|
| 34 |
|
|---|
| 35 | /**
|
|---|
| 36 | * @param arg0
|
|---|
| 37 | */
|
|---|
| 38 | public TileLoadException(Throwable arg0) {
|
|---|
| 39 | super(arg0);
|
|---|
| 40 |
|
|---|
| 41 | }
|
|---|
| 42 |
|
|---|
| 43 | /**
|
|---|
| 44 | * @param arg0
|
|---|
| 45 | * @param arg1
|
|---|
| 46 | */
|
|---|
| 47 | public TileLoadException(String arg0, Throwable arg1) {
|
|---|
| 48 | super(arg0, arg1);
|
|---|
| 49 |
|
|---|
| 50 | }
|
|---|
| 51 |
|
|---|
| 52 | }
|
|---|