01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.lockmanager.api;
05:
06: /**
07: * Thrown by server side locks when an illegal attempt to wait/notify is performed
08: */
09: public class TCIllegalMonitorStateException extends Exception {
10:
11: public TCIllegalMonitorStateException() {
12: super ();
13: }
14:
15: public TCIllegalMonitorStateException(String message) {
16: super (message);
17: }
18:
19: public TCIllegalMonitorStateException(Throwable cause) {
20: super (cause);
21: }
22:
23: public TCIllegalMonitorStateException(String message,
24: Throwable cause) {
25: super(message, cause);
26: }
27:
28: }
|