01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.rdm;
07:
08: import java.io.*;
09:
10: public class RDMDeadlockException extends RDMException {
11:
12: public RDMDeadlockException(String s) {
13: super (s);
14: }
15:
16: public RDMDeadlockException(Exception cause) {
17: super (cause);
18: }
19:
20: public RDMDeadlockException(String s, Exception cause) {
21: super(s, cause);
22: this.cause = cause;
23: }
24:
25: }
|