org.eclipse.osgi.service.pluginconversion
Class PluginConversionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.eclipse.osgi.service.pluginconversion.PluginConversionException
All Implemented Interfaces:
java.io.Serializable

public class PluginConversionException
extends java.lang.Exception

Custom exception for errors that can happen during plugin conversion.

Since:
3.0
See Also:
Serialized Form

Constructor Summary
PluginConversionException()
          Constructor for the class.
PluginConversionException(java.lang.String message)
          Create a new exception with the given message.
PluginConversionException(java.lang.String message, java.lang.Throwable cause)
          Create a new exception with the given message and nested exception.
PluginConversionException(java.lang.Throwable cause)
          Create a new exception with the given nested exception.
 
Method Summary
 java.lang.Throwable getCause()
          Return the nested exception for this exception or null if there is none.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PluginConversionException

public PluginConversionException()
Constructor for the class.


PluginConversionException

public PluginConversionException(java.lang.String message)
Create a new exception with the given message.

Parameters:
message - the message for the exception

PluginConversionException

public PluginConversionException(java.lang.String message,
                                 java.lang.Throwable cause)
Create a new exception with the given message and nested exception.

Parameters:
message - the message for the exception
cause - the nested exception

PluginConversionException

public PluginConversionException(java.lang.Throwable cause)
Create a new exception with the given nested exception.

Parameters:
cause - the nested exception
Method Detail

getCause

public java.lang.Throwable getCause()
Return the nested exception for this exception or null if there is none.

Overrides:
getCause in class java.lang.Throwable
Returns:
the nested exception or null