Package com.opencloud.sentinel.charging
Class DuplicateNameException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.opencloud.sentinel.charging.DuplicateNameException
-
- All Implemented Interfaces:
java.io.Serializable
public class DuplicateNameException extends java.lang.Exception
Exception thrown if charging instance already exists with the supplied name.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateNameException()
Create aDuplicateNameException
.DuplicateNameException(java.lang.String message)
Create aDuplicateNameException
with a cause.DuplicateNameException(java.lang.String message, java.lang.Throwable cause)
Create aDuplicateNameException
with a detail message and cause.DuplicateNameException(java.lang.Throwable cause)
Create aDuplicateNameException
with a detail message.
-
-
-
Constructor Detail
-
DuplicateNameException
public DuplicateNameException()
Create aDuplicateNameException
.
-
DuplicateNameException
public DuplicateNameException(java.lang.String message)
Create aDuplicateNameException
with a cause.- Parameters:
message
- the detail message.
-
DuplicateNameException
public DuplicateNameException(java.lang.Throwable cause)
Create aDuplicateNameException
with a detail message.- Parameters:
cause
- the reason this exception was thrown.
-
DuplicateNameException
public DuplicateNameException(java.lang.String message, java.lang.Throwable cause)
Create aDuplicateNameException
with a detail message and cause.- Parameters:
message
- the detail message.cause
- the reason this exception was thrown.
-
-