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

Last change on this file since 12675 was 12369, checked in by michael2402, 7 years ago

Javadoc for gui.progress package

  • Property svn:eol-style set to native
File size: 535 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.progress;
3
4/**
5 * An exception that is thrown by the progress monitor if something went wrong
6 */
7public class ProgressException extends RuntimeException {
8
9 /**
10 * Create a new {@link ProgressException}
11 * @param message The message
12 * @param args The arguments for the message string
13 * @see String#format
14 */
15 public ProgressException(String message, Object... args) {
16 super(String.format(message, args));
17 }
18
19}
Note: See TracBrowser for help on using the repository browser.