org.andromda.timetracker.domain.crud.UserDeleteManageableException.java Source code

Java tutorial

Introduction

Here is the source code for org.andromda.timetracker.domain.crud.UserDeleteManageableException.java

Source

// license-header java merge-point
//
// Attention: Generated code! Do not modify by hand!!
// Generated by crud/ManageableServiceDeleteException.vsl in andromda-ejb3-cartridge.
//
package org.andromda.timetracker.domain.crud;

import org.apache.commons.beanutils.PropertyUtils;

/**
 * TODO: Model Documentation for org.andromda.timetracker.domain.User
 */
public class UserDeleteManageableException extends Exception {
    /**
     * The default constructor.
     */
    public UserDeleteManageableException() {
    }

    /**
     * Constructs a new instance of UserDeleteManageableException
     *
     * @param throwable the parent Throwable
     */
    public UserDeleteManageableException(Throwable throwable) {
        super(findRootCause(throwable));
    }

    /**
     * Constructs a new instance of UserDeleteManageableException
     *
     * @param message the throwable message.
     */
    public UserDeleteManageableException(String message) {
        super(message);
    }

    /**
     * Constructs a new instance of UserDeleteManageableException
     *
     * @param message the throwable message.
     * @param throwable the parent of this Throwable.
     */
    public UserDeleteManageableException(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) {
            // Lets reflectively get any JMX or EJB exception causes.
            try {
                Throwable targetException = null;
                // java.lang.reflect.InvocationTargetException
                // or javax.management.ReflectionException
                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;
    }
}