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