Java tutorial
// license-header java merge-point // // Attention: Generated code! Do not modify by hand! // Generated by: DefaultServiceException.vsl in andromda-spring-cartridge. // package es.pode.dri.negocio.servicios.SQI; import org.apache.commons.beanutils.PropertyUtils; /** * The default exception thrown for unexpected errors occurring * within {@link es.pode.dri.negocio.servicios.SQI.SrvSQIAsincronoService}. */ public class SrvSQIAsincronoServiceException extends java.lang.RuntimeException { /** * The default constructor for <code>SrvSQIAsincronoServiceException</code>. */ public SrvSQIAsincronoServiceException() { } /** * Constructs a new instance of <code>SrvSQIAsincronoServiceException</code>. * * @param throwable the parent Throwable */ public SrvSQIAsincronoServiceException(Throwable throwable) { super(findRootCause(throwable)); } /** * Constructs a new instance of <code>SrvSQIAsincronoServiceException</code>. * * @param message the throwable message. */ public SrvSQIAsincronoServiceException(String message) { super(message); } /** * Constructs a new instance of <code>SrvSQIAsincronoServiceException</code>. * * @param message the throwable message. * @param throwable the parent of this Throwable. */ public SrvSQIAsincronoServiceException(String message, Throwable throwable) { super(message, findRootCause(throwable)); } /** * Finds the root cause of the parent exception * by traveling up the exception tree */ private static Throwable findRootCause(Throwable th) { if (th != null) { // Reflectively get any exception causes. try { Throwable targetException = null; // java.lang.reflect.InvocationTargetException String exceptionProperty = "targetException"; if (PropertyUtils.isReadable(th, exceptionProperty)) { targetException = (Throwable) PropertyUtils.getProperty(th, exceptionProperty); } else { exceptionProperty = "causedByException"; //javax.ejb.EJBException if (PropertyUtils.isReadable(th, exceptionProperty)) { targetException = (Throwable) PropertyUtils.getProperty(th, exceptionProperty); } } if (targetException != null) { th = targetException; } } catch (Exception ex) { // just print the exception and continue ex.printStackTrace(); } if (th.getCause() != null) { th = th.getCause(); th = findRootCause(th); } } return th; } }