summaryrefslogtreecommitdiff
path: root/java/JACE/Concurrency/LockException.java
blob: dff4c09c626a8c9dc6238c2692de1bf4493394d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package JACE.Concurrency;

/**
 * Base class for possible exceptions thrown from Lock
 * mechanisms.  This can be used by later Lock
 * implementations to signal special types of exceptions, such
 * as a remote failure, etc.
 * <P>
 */
public class LockException extends java.lang.Exception 
{
  /** 
   * Default constructor
   */
  public LockException () { }
  
  /**
   * Constructor with a string message that will be returned
   * via the getMessage() method on Exception.
   * <P>
   *@see java.lang.Exception#getMessage
   */
  public LockException (String message) 
  {
    super(message);
  }
}