1 19 20 package org.openide.util; 21 22 30 public class MutexException extends Exception { 31 static final long serialVersionUID = 2806363561939985219L; 32 33 34 private Exception ex; 35 36 39 public MutexException(Exception ex) { 40 super(ex.toString()); 41 this.ex = ex; 42 } 43 44 47 public Exception getException() { 48 return ex; 49 } 50 51 public Throwable getCause() { 52 return ex; 53 } 54 55 } 56 | Popular Tags |