com.ibm.websphere.workarea
Class PartitionAlreadyExistsException
- java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.websphere.workarea.PartitionAlreadyExistsException
All implemented interfaces:
java.io.Serializable
- public class PartitionAlreadyExistsException
- extends java.lang.Exception
. . .
String myPar = "myPartitionName";
try{
//See the UserWorkArea interface and the
// WorkAreaPartitionManager interface.
UserWorkArea myPartition = workAreaPartitionManager.createWorkAreaPartition(myPar,properties);
}
catch(PartitionAlreadyExistsException e){
System.out.println("Partition: " + myPar + " already exists");
. . .
}
. . .
See Also:
Constructor Summary
| Constructor and Description |
|---|
PartitionAlreadyExistsException()
|
PartitionAlreadyExistsException(java.lang.String s)
|
Method Summary
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail
PartitionAlreadyExistsException
- public PartitionAlreadyExistsException( )
PartitionAlreadyExistsException
- public PartitionAlreadyExistsException( java.lang.String s)