1 package com.atlassian.plugin.osgi.factory.transform;
2
3 /**
4 * Generic wrapper exception for all exceptions thrown during plugin transformation
5 */
6 public class PluginTransformationException extends RuntimeException {
7 public PluginTransformationException() {
8 }
9
10 public PluginTransformationException(String s) {
11 super(s);
12 }
13
14 public PluginTransformationException(String s, Throwable throwable) {
15 super(s, throwable);
16 }
17
18 public PluginTransformationException(Throwable throwable) {
19 super(throwable);
20 }
21 }