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

Last change on this file since 2512 was 2512, checked in by stoecker, 14 years ago

i18n updated, fixed files to reduce problems when applying patches, fix #4017

File size: 716 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 // TODO Auto-generated constructor stub
9 }
10
11 public MissingHelpContentException(String message, Throwable cause) {
12 super(message, cause);
13 // TODO Auto-generated constructor stub
14 }
15
16 public MissingHelpContentException(String message) {
17 super(message);
18 // TODO Auto-generated constructor stub
19 }
20
21 public MissingHelpContentException(Throwable cause) {
22 super(cause);
23 // TODO Auto-generated constructor stub
24 }
25}
Note: See TracBrowser for help on using the repository browser.