View Javadoc

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   {
8       ///CLOVER:OFF
9       public PluginParseException()
10      {
11          super();
12      }
13  
14      public PluginParseException(String s)
15      {
16          super(s);
17      }
18  
19      public PluginParseException(Throwable throwable)
20      {
21          super(throwable);
22      }
23  
24      public PluginParseException(String s, Throwable throwable)
25      {
26          super(s, throwable);
27      }
28  }