Class NotConnectedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.polarion.platform.service.repository.RepositoryException
com.polarion.platform.service.repository.NotConnectedException
- All Implemented Interfaces:
Serializable
@Deprecated(since="3.24.4",
forRemoval=true)
public class NotConnectedException
extends RepositoryException
Deprecated, for removal: This API element is subject to removal in a future version.
Exception indicating that called operation needs connection.
- Author:
- Stepan Roh, Polarion Software
- See Also:
-
Constructor Summary
ConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Exception without message and cause.NotConnectedException
(String message) Deprecated, for removal: This API element is subject to removal in a future version.Exception with message and without cause.NotConnectedException
(String message, Throwable cause) Deprecated, for removal: This API element is subject to removal in a future version.Exception with message and cause.NotConnectedException
(Throwable cause) Deprecated, for removal: This API element is subject to removal in a future version.Exception without message and with cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotConnectedException
public NotConnectedException()Deprecated, for removal: This API element is subject to removal in a future version.Exception without message and cause. -
NotConnectedException
Deprecated, for removal: This API element is subject to removal in a future version.Exception with message and without cause.- Parameters:
message
- detail message
-
NotConnectedException
Deprecated, for removal: This API element is subject to removal in a future version.Exception without message and with cause.- Parameters:
cause
- exception cause
-
NotConnectedException
Deprecated, for removal: This API element is subject to removal in a future version.Exception with message and cause.- Parameters:
message
- detail messagecause
- exception cause
-