001    // GraphLab Project: http://graphlab.sharif.edu
002    // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology
003    // Distributed under the terms of the GNU General Public License (GPL): http://www.gnu.org/licenses/
004    package graphlab.platform.core.exception;
005    
006    /**
007     * The base class which stores information about occcured exceptions in application.
008     *
009     * @author  Ruzbeh ebrahimi
010     */
011    public class ExceptionOccuredData {
012        public final static String EVENT_KEY = "Bug.occured";
013        public Throwable e;
014    
015        public ExceptionOccuredData(Throwable e) {
016            super();
017            this.e = e;
018        }
019    
020    }