| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.jasig.portal.PortalException org.jasig.portal.concurrency.LockingException
LockingException | public class LockingException extends org.jasig.portal.PortalException (Code) | | A LockingException describes a problem that has arisen during
an attempt to create or alter an IEntityLock . If the problem
occurs in the lock store, the LockingException should wrap an
Exception specific to the store, like a java.sql.SQLException .
author: Dan Ellentuck version: $Revision: 35418 $ |
LockingException | public LockingException()(Code) | | Instantiate a bare LockingException.
Deprecated because it would be so much more helpful if you were to
instead throw an exception that provides a message
|
LockingException | public LockingException(Throwable cause)(Code) | | Instantiate a LockingException with the given cause.
Parameters: cause - Throwable that caused the locking problem |
LockingException | public LockingException(String msg)(Code) | | Instantiate a LockingException with the given message.
Parameters: msg - message describing nature of locking problem |
LockingException | public LockingException(String msg, Throwable cause)(Code) | | Instantiate a LockingException with the given message
and underlying cause.
Parameters: msg - message describing nature of locking problem Parameters: cause - underlying cause |
getExceptionCode | public int getExceptionCode()(Code) | | This method always returns zero. It is deprecated and will presumably be
removed in the future.
0 |
|
|
|