// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.gui.help; public class MissingHelpContentException extends HelpContentReaderException { public MissingHelpContentException() { super(); // TODO Auto-generated constructor stub } public MissingHelpContentException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public MissingHelpContentException(String message) { super(message); // TODO Auto-generated constructor stub } public MissingHelpContentException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }