com.openexchange.admin.rmi.exceptions
Class TaskExecutionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.openexchange.admin.rmi.exceptions.TaskExecutionException
All Implemented Interfaces:
Serializable

public class TaskExecutionException
extends Exception

This exception should be used if an exception is raised inside a running task which is not known to the outside world. For example if you run a task from a plugin and this task throws an exception which is only known by that plugin. In this case you can not throw the exception due to unmarshalling errors which might occur

Author:
d7
See Also:
Serialized Form

Constructor Summary
TaskExecutionException()
           
TaskExecutionException(String message)
           
TaskExecutionException(String message, Throwable cause)
           
TaskExecutionException(Throwable cause)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TaskExecutionException

public TaskExecutionException()

TaskExecutionException

public TaskExecutionException(String message)
Parameters:
message -

TaskExecutionException

public TaskExecutionException(Throwable cause)
Parameters:
cause -

TaskExecutionException

public TaskExecutionException(String message,
                              Throwable cause)
Parameters:
message -
cause -