Class DataSetExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.compuware.api.topaz.TopazAPIException
-
- com.compuware.api.topaz.hostresources.HostResourceException
-
- com.compuware.api.topaz.hostresources.zos.DataSetExistsException
-
- All Implemented Interfaces:
Serializable
public class DataSetExistsException extends HostResourceException
DataSetExistsException
is a checked exception thrown when an an attempt to allocate a dataset fails because the dataset already exists.- Since:
- 1.1.0
- Version:
- 2.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataSetExistsException(String message, String localizedMessage, String dataSetName)
Constructs a new dataset exists exception with the specified detail messages.
-
Method Summary
-
Methods inherited from class com.compuware.api.topaz.hostresources.HostResourceException
getHostResourceName
-
Methods inherited from class com.compuware.api.topaz.TopazAPIException
getLocalizedMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataSetExistsException
public DataSetExistsException(String message, String localizedMessage, String dataSetName)
Constructs a new dataset exists exception with the specified detail messages. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- the non-localized detail message (which is saved for later retrieval by theThrowable.getMessage()
method).localizedMessage
- the localized description (which is saved for later retrieval by theTopazAPIException.getLocalizedMessage()
method). (Anull
value is permitted, in which casegetLocalizedMessage()
will return the non-localized detail message.)dataSetName
- the dataset name- Since:
- 1.1.0
-
-