001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.help;
003
004/**
005 * Exception thrown when help content is missing.
006 * @since 2308
007 */
008public class MissingHelpContentException extends HelpContentReaderException {
009
010    /**
011     * Constructs a new {@code MissingHelpContentException}.
012     * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method.
013     */
014    public MissingHelpContentException(String message) {
015        super(message, 0);
016    }
017}