01: /*
02: * Jython Database Specification API 2.0
03: *
04: * $Id: QueueClosedException.java 2414 2005-02-23 04:26:23Z bzimmer $
05: *
06: * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com>
07: *
08: */
09: package com.ziclix.python.sql.util;
10:
11: /**
12: * This exception is thrown when the queue is closed and an operation is attempted.
13: *
14: * @author brian zimmer
15: * @version $Revision: 2414 $
16: */
17: public class QueueClosedException extends RuntimeException {
18:
19: /**
20: * Constructor QueueClosedException
21: */
22: public QueueClosedException() {
23: super ();
24: }
25:
26: /**
27: * Constructor QueueClosedException
28: *
29: * @param msg
30: */
31: public QueueClosedException(String msg) {
32: super(msg);
33: }
34: }
|