00001 // Copyright 2007 Sandia Corporation. Under the terms 00002 // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. 00003 // Government retains certain rights in this software. 00004 // 00005 // Copyright (c) 2005-2007, Sandia Corporation 00006 // All rights reserved. 00007 // Copyright (c) 2003-2005, University of Notre Dame 00008 // All rights reserved. 00009 // 00010 // This file is part of the SST software package. For license 00011 // information, see the LICENSE file in the top level directory of the 00012 // distribution. 00013 00014 00015 #ifndef EXCEPTIONS_H 00016 #define EXCEPTIONS_H 00017 00018 //: Exceptions 00019 typedef enum{ NO_EXCEPTION, 00020 MOVE_TO_EXCEPTION, 00021 FEB_EXCEPTION, 00022 YIELD_EXCEPTION, 00023 PROC_EXCEPTION, 00024 LAST_EXCEPTION 00025 } exceptType; 00026 00027 #endif 00028