1 19 20 package org.netbeans.mdr.util; 21 22 26 public class MountFailedException extends java.lang.Exception { 27 28 private Exception rootCase; 29 30 33 public MountFailedException () { 34 } 35 36 37 41 public MountFailedException(String msg) { 42 this (msg, null); 43 } 44 45 50 public MountFailedException (String message, Exception rootCase) { 51 super (message); 52 this.rootCase = rootCase; 53 } 54 55 59 public Exception getRootCase () { 60 return this.rootCase; 61 } 62 } 63 | Popular Tags |