Package org.opends.server.tools.tasks
Class TaskClientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opends.server.types.OpenDsException
-
- org.opends.server.tools.tasks.TaskClientException
-
- All Implemented Interfaces:
Serializable
,LocalizableException
public class TaskClientException extends OpenDsException
Exception for problems related to interacting with the task backend.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TaskClientException()
Constructs a default instance.TaskClientException(Throwable cause)
Constructs a parameterized instance.TaskClientException(LocalizableMessage message)
Constructs a parameterized instance.TaskClientException(LocalizableMessage message, Throwable cause)
Constructs a parameterized instance.TaskClientException(OpenDsException cause)
Constructs a parameterized instance.
-
Method Summary
-
Methods inherited from class org.opends.server.types.OpenDsException
getMessageObject
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TaskClientException
public TaskClientException()
Constructs a default instance.
-
TaskClientException
public TaskClientException(OpenDsException cause)
Constructs a parameterized instance.- Parameters:
cause
- of this exception
-
TaskClientException
public TaskClientException(LocalizableMessage message)
Constructs a parameterized instance.- Parameters:
message
- for this exception
-
TaskClientException
public TaskClientException(Throwable cause)
Constructs a parameterized instance.- Parameters:
cause
- of this exception
-
TaskClientException
public TaskClientException(LocalizableMessage message, Throwable cause)
Constructs a parameterized instance.- Parameters:
message
- for this exceptioncause
- of this exception
-
-