source: josm/trunk/src/org/openstreetmap/josm/gui/progress/ProgressException.java@ 10755

Last change on this file since 10755 was 5170, checked in by Don-vip, 12 years ago

cleanup svn:mime-type properties preventing Java sources from being viewed as such on Trac

  • Property svn:eol-style set to native
File size: 270 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.progress;
3
4public class ProgressException extends RuntimeException {
5
6 public ProgressException(String message, Object... args) {
7 super(String.format(message, args));
8 }
9
10}
Note: See TracBrowser for help on using the repository browser.