com.ibm.websphere.workarea
Class NoSuchPartitionException
- java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.websphere.workarea.NoSuchPartitionException
All implemented interfaces:
java.io.Serializable
- public class NoSuchPartitionException
- extends java.lang.Exception
. . .
String myPar = "myPartitionName";
try{
//See the UserWorkArea interface and the
// WorkAreaPartitionManager interface.
UserWorkArea myPartition = workAreaPartitionManager.getWorkAreaPartition(myPar);
}
catch(NoSuchPartitionException e){
System.out.println("Partition: " + myPar + " doesn't exist");
. . .
}
. . .
Version:
1.0
See Also:
Constructor Summary
| Constructor and Description |
|---|
NoSuchPartitionException()
|
NoSuchPartitionException(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
NoSuchPartitionException
- public NoSuchPartitionException( )
NoSuchPartitionException
- public NoSuchPartitionException( java.lang.String s)