KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > util > QueueClosedException


1 // $Id: QueueClosedException.java,v 1.1.1.1 2003/09/09 01:24:12 belaban Exp $
2

3 package org.jgroups.util;
4
5
6 public class QueueClosedException extends Exception JavaDoc {
7
8     public QueueClosedException() {
9
10     }
11
12     public QueueClosedException( String JavaDoc msg )
13     {
14         super( msg );
15     }
16
17     public String JavaDoc toString() {
18         if ( this.getMessage() != null )
19             return "QueueClosedException:" + this.getMessage();
20         else
21             return "QueueClosedException";
22     }
23 }
24
Popular Tags