1 11 package org.eclipse.osgi.service.pluginconversion; 12 13 18 public class PluginConversionException extends Exception { 19 private static final long serialVersionUID = 3258130258472284472L; 20 21 24 private transient Throwable cause; 25 26 29 public PluginConversionException() { 30 super(); 31 } 32 33 38 public PluginConversionException(String message) { 39 super(message); 40 } 41 42 48 public PluginConversionException(String message, Throwable cause) { 49 super(message); 50 this.cause = cause; 51 } 52 53 58 public PluginConversionException(Throwable cause) { 59 this.cause = cause; 60 } 61 62 68 public Throwable getCause() { 69 return cause; 70 } 71 } 72 | Popular Tags |