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

Last change on this file since 11710 was 10050, checked in by Don-vip, 8 years ago

add more unit tests

  • 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 * <tt>(cause==null ? null : cause.toString())</tt> (which typically contains the class and detail message of <tt>cause</tt>).
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.