activemq-cpp-3.4.0
|
00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one or more 00003 * contributor license agreements. See the NOTICE file distributed with 00004 * this work for additional information regarding copyright ownership. 00005 * The ASF licenses this file to You under the Apache License, Version 2.0 00006 * (the "License"); you may not use this file except in compliance with 00007 * the License. You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 */ 00017 00018 #ifndef _DECAF_LANG_EXCEPTIONS_EXCEPTIONDEFINES_H_ 00019 #define _DECAF_LANG_EXCEPTIONS_EXCEPTIONDEFINES_H_ 00020 00027 #define DECAF_CATCH_RETHROW( type ) \ 00028 catch( type& ex ){ \ 00029 ex.setMark( __FILE__, __LINE__ ); \ 00030 throw ex; \ 00031 } 00032 00039 #define DECAF_CATCH_EXCEPTION_CONVERT( sourceType, targetType ) \ 00040 catch( sourceType& ex ){ \ 00041 targetType target( &ex ); \ 00042 target.setMark( __FILE__, __LINE__ ); \ 00043 throw target; \ 00044 } 00045 00050 #define DECAF_CATCHALL_THROW( type ) \ 00051 catch( ... ){ \ 00052 type ex( __FILE__, __LINE__, \ 00053 "caught unknown exception" ); \ 00054 throw ex; \ 00055 } 00056 00062 #define DECAF_CATCHALL_NOTHROW( ) \ 00063 catch( ... ){ \ 00064 lang::Exception ex( __FILE__, __LINE__, \ 00065 "caught unknown exception, not rethrowing" ); \ 00066 } 00067 00074 #define DECAF_CATCH_NOTHROW( type ) \ 00075 catch( type& ex ){ \ 00076 ex.setMark( __FILE__, __LINE__ ); \ 00077 } 00078 00079 #endif /*_DECAF_LANG_EXCEPTIONS_EXCEPTIONDEFINES_H_*/