source: josm/trunk/src/org/openstreetmap/josm/plugins/PluginListParseException.java@ 14628

Last change on this file since 14628 was 13493, checked in by Don-vip, 6 years ago

see #11924, see #15560, see #16048 - tt HTML tag is deprecated in HTML5: use code instead

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.plugins;
3
4/**
5 * Exception thrown during plugin list parsing.
6 * @since 2817
7 */
8public class PluginListParseException extends Exception {
9
10 /**
11 * Constructs a new {@code PluginListParseException} with the specified detail message and cause.
12 * @param message message the detail message (which is saved for later retrieval by the {@link #getMessage()} method).
13 * @param cause cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
14 */
15 public PluginListParseException(String message, Throwable cause) {
16 super(message, cause);
17 }
18
19 /**
20 * Constructs a new {@code PluginListParseException} with the specified cause and a detail message of
21 * <code>(cause==null ? null : cause.toString())</code> (which typically contains the class and detail message of <code>cause</code>).
22 * @param cause cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
23 */
24 public PluginListParseException(Throwable cause) {
25 super(cause);
26 }
27}
Note: See TracBrowser for help on using the repository browser.