Class DuplicateSequenceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.xml.ws.WebServiceException
-
- com.sun.xml.ws.rx.RxRuntimeException
-
- com.sun.xml.ws.rx.rm.runtime.sequence.DuplicateSequenceException
-
- All Implemented Interfaces:
Serializable
public final class DuplicateSequenceException extends RxRuntimeException
Inicates that the sequence with given sequence identifier already exists in a given environment. This exceptions is used under the following conditions:- sequence with such
sequenceIdis already registered and managed by a given sequence manager
- Author:
- Marek Potociar (marek.potociar at sun.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateSequenceException(String sequenceId)Constructs an instance ofDuplicateSequenceExceptionfor the sequence withsequenceIdidentifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSequenceId()Returns the identifier of the unknown sequence-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DuplicateSequenceException
public DuplicateSequenceException(String sequenceId)
Constructs an instance ofDuplicateSequenceExceptionfor the sequence withsequenceIdidentifier.- Parameters:
sequenceId- the identifier of the duplicate sequence.
-
-
Method Detail
-
getSequenceId
public String getSequenceId()
Returns the identifier of the unknown sequence- Returns:
- the unknown sequence identifier
-
-