KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > lockmanager > api > TCIllegalMonitorStateException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.lockmanager.api;
5
6 /**
7  * Thrown by server side locks when an illegal attempt to wait/notify is performed
8  */

9 public class TCIllegalMonitorStateException extends Exception JavaDoc {
10
11   public TCIllegalMonitorStateException() {
12     super();
13   }
14
15   public TCIllegalMonitorStateException(String JavaDoc message) {
16     super(message);
17   }
18
19   public TCIllegalMonitorStateException(Throwable JavaDoc cause) {
20     super(cause);
21   }
22
23   public TCIllegalMonitorStateException(String JavaDoc message, Throwable JavaDoc cause) {
24     super(message, cause);
25   }
26
27 }
Popular Tags