com.algoTrader.service.ib.IBMarketDataServiceException.java Source code

Java tutorial

Introduction

Here is the source code for com.algoTrader.service.ib.IBMarketDataServiceException.java

Source

// license-header java merge-point
//
// Attention: Generated code! Do not modify by hand!
// Generated by: DefaultServiceException.vsl in andromda-spring-cartridge.
//
package com.algoTrader.service.ib;

import org.apache.commons.beanutils.PropertyUtils;

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link com.algoTrader.service.ib.IBMarketDataService}.
 */
public class IBMarketDataServiceException extends RuntimeException {
    /**
     * The serial version UID of this class. Needed for serialization.
     */
    private static final long serialVersionUID = 6249989319434735219L;

    /**
     * The default constructor for <code>IBMarketDataServiceException</code>.
     */
    public IBMarketDataServiceException() {
        // Documented empty block
    }

    /**
     * Constructs a new instance of <code>IBMarketDataServiceException</code>.
     *
     * @param throwable the parent Throwable
     */
    public IBMarketDataServiceException(Throwable throwable) {
        super(findRootCause(throwable));
    }

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

    /**
     * Constructs a new instance of <code>IBMarketDataServiceException</code>.
     *
     * @param message the throwable message.
     * @param throwable the parent of this Throwable.
     */
    public IBMarketDataServiceException(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;
    }

    private Object[] messageArguments;

    /**
     * Gets the message arguments that can be used by message resources (in
     * something like the presentation tier)
     *
     * @return messageArguments
     */
    public Object[] getMessageArguments() {
        return this.messageArguments;
    }

    /**
     * Sets the message arguments that can be used by message resources (in
     * something like the presentation tier)
     *
     * @param messageArgumentsIn
     */
    public void setMessageArguments(Object[] messageArgumentsIn) {
        this.messageArguments = messageArgumentsIn;
    }
}