source: josm/trunk/src/org/openstreetmap/josm/gui/help/MissingHelpContentException.java@ 14384

Last change on this file since 14384 was 10137, checked in by Don-vip, 8 years ago

sonar, javadoc

  • Property svn:eol-style set to native
File size: 538 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.help;
3
4/**
5 * Exception thrown when help content is missing.
6 * @since 2308
7 */
8public class MissingHelpContentException extends HelpContentReaderException {
9
10 /**
11 * Constructs a new {@code MissingHelpContentException}.
12 * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method.
13 */
14 public MissingHelpContentException(String message) {
15 super(message, 0);
16 }
17}
Note: See TracBrowser for help on using the repository browser.