1 61 62 63 package org.jaxen; 64 65 74 public class FunctionCallException extends JaxenException 75 { 76 77 82 public FunctionCallException(String message) { 83 super( message ); 84 } 85 86 91 public FunctionCallException(Throwable nestedException) { 92 super( nestedException ); 93 } 94 95 102 public FunctionCallException(String message, Exception nestedException) { 103 super( message, nestedException ); 104 } 105 106 116 public Throwable getNestedException() { 117 return getCause(); 118 } 119 120 } 121 | Popular Tags |