Package com.opencloud.sentinel.charging
Class InstructionAlreadyPendingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.opencloud.sentinel.charging.InstructionAlreadyPendingException
-
- All Implemented Interfaces:
java.io.Serializable
public class InstructionAlreadyPendingException extends java.lang.Exception
Exception thrown if there is already an instruction pending.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InstructionAlreadyPendingException()
Create aInstructionAlreadyPendingException
.InstructionAlreadyPendingException(java.lang.String message)
Create aInstructionAlreadyPendingException
with a detail message.InstructionAlreadyPendingException(java.lang.String message, java.lang.Throwable cause)
Create aInstructionAlreadyPendingException
with a detail message and cause.InstructionAlreadyPendingException(java.lang.Throwable cause)
Create aInstructionAlreadyPendingException
with a cause.
-
-
-
Constructor Detail
-
InstructionAlreadyPendingException
public InstructionAlreadyPendingException()
Create aInstructionAlreadyPendingException
.
-
InstructionAlreadyPendingException
public InstructionAlreadyPendingException(java.lang.String message)
Create aInstructionAlreadyPendingException
with a detail message.- Parameters:
message
- the detail message.
-
InstructionAlreadyPendingException
public InstructionAlreadyPendingException(java.lang.Throwable cause)
Create aInstructionAlreadyPendingException
with a cause.- Parameters:
cause
- the reason this exception was thrown.
-
InstructionAlreadyPendingException
public InstructionAlreadyPendingException(java.lang.String message, java.lang.Throwable cause)
Create aInstructionAlreadyPendingException
with a detail message and cause.- Parameters:
message
- the detail message.cause
- the reason this exception was thrown.
-
-