001    /*
002    // $Id: XmlaOlap4jProxyException.java 229 2009-05-08 19:11:29Z jhyde $
003    // This software is subject to the terms of the Eclipse Public License v1.0
004    // Agreement, available at the following URL:
005    // http://www.eclipse.org/legal/epl-v10.html.
006    // Copyright (C) 2007-2008 Julian Hyde
007    // All Rights Reserved.
008    // You must accept the terms of that agreement to use this software.
009    */
010    package org.olap4j.driver.xmla.proxy;
011    
012    /**
013     * Gets thrown whenever an exception is encountered during the querying
014     * of an XmlaOlap4jProxy subclass.
015     *
016     * @author Luc Boudreau
017     * @version $Id: XmlaOlap4jProxyException.java 229 2009-05-08 19:11:29Z jhyde $
018     */
019    public class XmlaOlap4jProxyException extends Exception {
020        private static final long serialVersionUID = 1729906649527317997L;
021        public XmlaOlap4jProxyException(String message, Throwable cause) {
022            super(message, cause);
023        }
024    }
025    
026    // End XmlaOlap4jProxyException.java