Package com.opencloud.sentinel.multileg
Class DuplicateLegException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.opencloud.sentinel.multileg.DuplicateLegException
-
- All Implemented Interfaces:
java.io.Serializable
public class DuplicateLegException extends java.lang.Exception
Exception thrown if aLeg
already exists with the supplied name in during importing, creating or forking process.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateLegException()
DuplicateLegException(java.lang.String message)
Create aDuplicateLegException
with a detail message.DuplicateLegException(java.lang.String message, java.lang.Throwable cause)
Create aDuplicateLegException
with a detail message and cause.DuplicateLegException(java.lang.Throwable cause)
Create aDuplicateLegException
with a cause.
-
-
-
Constructor Detail
-
DuplicateLegException
public DuplicateLegException()
-
DuplicateLegException
public DuplicateLegException(java.lang.String message)
Create aDuplicateLegException
with a detail message.- Parameters:
message
- the detail message.
-
DuplicateLegException
public DuplicateLegException(java.lang.Throwable cause)
Create aDuplicateLegException
with a cause.- Parameters:
cause
- the reason this exception was thrown.
-
DuplicateLegException
public DuplicateLegException(java.lang.String message, java.lang.Throwable cause)
Create aDuplicateLegException
with a detail message and cause.- Parameters:
message
- the detail message.cause
- the reason this exception was thrown.
-
-