1 23 24 package org.objectweb.medor.expression.api; 25 26 31 public class ExpressionException extends Exception { 32 Exception nested; 33 34 public ExpressionException(String s) { 35 super(s); 36 } 37 38 public ExpressionException(Exception e) { 39 super(); 40 nested = e; 41 } 42 43 public ExpressionException(String m, Exception e) { 44 super(m); 45 nested = e; 46 } 47 48 public Exception getNestedException() { 49 return nested; 50 } 51 52 } 53 | Popular Tags |