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

Last change on this file since 4932 was 3408, checked in by jttt, 14 years ago

Show only actions that can work on all selected layers in LayerListDialog popup menu

  • Property svn:eol-style set to native
File size: 524 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.help;
3
4public class MissingHelpContentException extends HelpContentReaderException {
5
6 public MissingHelpContentException() {
7 super();
8 }
9
10 public MissingHelpContentException(String message, Throwable cause) {
11 super(message, cause);
12 }
13
14 public MissingHelpContentException(String message) {
15 super(message);
16 }
17
18 public MissingHelpContentException(Throwable cause) {
19 super(cause);
20 }
21}
Note: See TracBrowser for help on using the repository browser.