public class ConcurrentAccessException extends AccountException
This is useful when an application must ensure that only one person is logged-in to a single account at any given time.
Sometimes account names and passwords are lazily given away to many people for easy access to a system. Such behavior is undesirable in systems where users are accountable for their actions, such as in government applications, or when licensing agreements must be maintained, such as those which only allow 1 user per paid license.
By disallowing concurrent access, such systems can ensure that each authenticated session corresponds to one and only one user at any given time.
Constructor and Description |
---|
ConcurrentAccessException()
Creates a new ConcurrentAccessException.
|
ConcurrentAccessException(String message)
Constructs a new ConcurrentAccessException.
|
ConcurrentAccessException(String message,
Throwable cause)
Constructs a new ConcurrentAccessException.
|
ConcurrentAccessException(Throwable cause)
Constructs a new ConcurrentAccessException.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ConcurrentAccessException()
public ConcurrentAccessException(String message)
message
- the reason for the exceptionpublic ConcurrentAccessException(Throwable cause)
cause
- the underlying Throwable that caused this exception to be thrown.public ConcurrentAccessException(String message, Throwable cause)
message
- the reason for the exceptioncause
- the underlying Throwable that caused this exception to be thrown.Copyright © 2004-2016 The Apache Software Foundation. All Rights Reserved.