KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ziclix > python > sql > util > QueueClosedException


1 /*
2  * Jython Database Specification API 2.0
3  *
4  * $Id: QueueClosedException.java,v 1.2 2005/02/23 04:26:21 bzimmer Exp $
5  *
6  * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com>
7  *
8  */

9 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: 1.2 $
16  */

17 public class QueueClosedException extends RuntimeException JavaDoc {
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 JavaDoc msg) {
32         super(msg);
33     }
34 }
35
Popular Tags