1 23 package com.sun.enterprise; 24 25 30 public class InvocationException extends RuntimeException { 31 32 private Exception ex; 33 34 public InvocationException() { 35 super(); 36 } 37 38 public InvocationException(String s) { 39 super(s); 40 } 41 42 public InvocationException(Exception ex) { 43 this.ex = ex; 44 } 45 46 public Exception getNestedException() { 47 return ex; 48 } 49 50 } 51 | Popular Tags |