01: package com.sun.portal.common.util; 02: 03: public class TimeBoundRunnableException extends Exception { 04: private Throwable _cause; 05: 06: public TimeBoundRunnableException(Throwable cause) { 07: _cause = cause; 08: } 09: 10: public Throwable getCause() { 11: return _cause; 12: } 13: 14: }