Package com.opencloud.sentinel.providers
Class ServiceTimerAlreadyExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.opencloud.sentinel.providers.ServiceTimerAlreadyExistsException
-
- All Implemented Interfaces:
java.io.Serializable
public class ServiceTimerAlreadyExistsException extends java.lang.Exception
Exception thrown if aTimerID
is already registered in aServiceTimerProvider
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceTimerAlreadyExistsException()
Create aServiceTimerAlreadyExistsException
.ServiceTimerAlreadyExistsException(java.lang.String message)
Create aServiceTimerAlreadyExistsException
with a detail message.ServiceTimerAlreadyExistsException(java.lang.String message, java.lang.Throwable cause)
Create aServiceTimerAlreadyExistsException
with a detail message and cause.ServiceTimerAlreadyExistsException(java.lang.Throwable cause)
Create aServiceTimerAlreadyExistsException
with a cause.
-
-
-
Constructor Detail
-
ServiceTimerAlreadyExistsException
public ServiceTimerAlreadyExistsException()
Create aServiceTimerAlreadyExistsException
.
-
ServiceTimerAlreadyExistsException
public ServiceTimerAlreadyExistsException(java.lang.String message, java.lang.Throwable cause)
Create aServiceTimerAlreadyExistsException
with a detail message and cause.- Parameters:
message
- the detail message.cause
- the reason this exception was thrown.
-
ServiceTimerAlreadyExistsException
public ServiceTimerAlreadyExistsException(java.lang.String message)
Create aServiceTimerAlreadyExistsException
with a detail message.- Parameters:
message
- the detail message.
-
ServiceTimerAlreadyExistsException
public ServiceTimerAlreadyExistsException(java.lang.Throwable cause)
Create aServiceTimerAlreadyExistsException
with a cause.- Parameters:
cause
- the reason this exception was thrown.
-
-