source: josm/trunk/src/org/openstreetmap/josm/tools/SAXReturnException.java@ 14016

Last change on this file since 14016 was 13311, checked in by Don-vip, 6 years ago

checkstyle

  • Property svn:eol-style set to native
File size: 402 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools;
3
4import org.xml.sax.SAXException;
5
6/** Quit parsing, when a certain condition is met */
7class SAXReturnException extends SAXException {
8 private final String result;
9
10 SAXReturnException(String result) {
11 this.result = result;
12 }
13
14 public final String getResult() {
15 return result;
16 }
17}
Note: See TracBrowser for help on using the repository browser.