1 9 package javolution.realtime; 10 11 21 public class ConcurrentException extends RuntimeException { 22 23 26 private Throwable _cause; 27 28 34 ConcurrentException(Throwable cause) { 35 _cause = cause; 36 } 37 38 44 public Throwable getCause() { 45 return _cause; 46 } 47 48 private static final long serialVersionUID = 1865984637821984964L; 49 } | Popular Tags |