01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.util;
06:
07: import com.tc.exception.TCRuntimeException;
08:
09: public class TCDataFileLockingException extends TCRuntimeException {
10:
11: public TCDataFileLockingException() {
12: super ();
13: }
14:
15: public TCDataFileLockingException(String message) {
16: super (message);
17: }
18:
19: public TCDataFileLockingException(Throwable cause) {
20: super (cause);
21: }
22:
23: public TCDataFileLockingException(String message, Throwable cause) {
24: super(message, cause);
25: }
26:
27: }
|