1 package com.atlassian.plugin;
2
3 /**
4 * Parse plugin exception - thrown from code which must parse a plugin.
5 */
6 public class PluginParseException extends PluginException {
7 ///CLOVER:OFF
8 public PluginParseException() {
9 super();
10 }
11
12 public PluginParseException(String s) {
13 super(s);
14 }
15
16 public PluginParseException(Throwable throwable) {
17 super(throwable);
18 }
19
20 public PluginParseException(String s, Throwable throwable) {
21 super(s, throwable);
22 }
23 }