FileDocCategorySizeDatePackage
QueueException.javaAPI DocGlassfish v2 API3801Fri May 04 22:32:10 BST 2007com.sun.enterprise.util.collection

QueueException

public class QueueException extends Exception

$Source: /cvs/glassfish/appserv-commons/src/java/com/sun/enterprise/util/collection/QueueException.java,v $
author
$Author: tcfujii $
version
$Revision: 1.4 $ $Date: 2007/05/05 05:32:10 $

Fields Summary
Throwable
throwable
Constructors Summary
public QueueException()

    
      
        super();
    
public QueueException(String message)

        super(message);
    
public QueueException(String message, Throwable throwable)

        super(message);
        this.throwable = throwable;
    
Methods Summary
public voidprintStackTrace()

    	printStackTrace(new PrintWriter(System.err));
    
public voidprintStackTrace(java.io.PrintStream ps)

    	printStackTrace(new PrintWriter(ps));
    
public voidprintStackTrace(java.io.PrintWriter pw)

    	if (throwable != null) {
    		pw.println("QueueException: " + getMessage());
    		throwable.printStackTrace(pw);
    	} else {
    		super.printStackTrace(pw);
    	}