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

Last change on this file since 13111 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
RevLine 
[3083]1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.plugins;
3
[10050]4/**
5 * Exception thrown during plugin list parsing.
6 * @since 2817
7 */
[3083]8public class PluginListParseException extends Exception {
9
[10050]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);
[3083]17 }
18
[10050]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);
[3083]26 }
27}
Note: See TracBrowser for help on using the repository browser.