activemq-cpp-3.4.0

src/main/activemq/exceptions/ExceptionDefines.h

Go to the documentation of this file.
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 #ifndef _ACTIVEMQ_EXCEPTIONS_EXCEPTIONDEFINES_H_
00018 #define _ACTIVEMQ_EXCEPTIONS_EXCEPTIONDEFINES_H_
00019 
00026 #define AMQ_CATCH_RETHROW( type ) \
00027     catch( type& ex ){ \
00028         ex.setMark( __FILE__, __LINE__ ); \
00029         throw ex; \
00030     }
00031 
00038 #define AMQ_CATCH_EXCEPTION_CONVERT( sourceType, targetType ) \
00039     catch( sourceType& ex ){ \
00040         targetType target( ex ); \
00041         target.setMark( __FILE__, __LINE__ ); \
00042         throw target; \
00043     }
00044 
00049 #define AMQ_CATCHALL_THROW( type ) \
00050     catch( ... ){ \
00051         type ex( __FILE__, __LINE__, \
00052             "caught unknown exception" ); \
00053         throw ex; \
00054     }
00055 
00061 #define AMQ_CATCHALL_NOTHROW( ) \
00062     catch( ... ){ \
00063         activemq::exceptions::ActiveMQException ex( __FILE__, __LINE__, \
00064             "caught unknown exception, not rethrowing" ); \
00065     }
00066 
00073 #define AMQ_CATCH_NOTHROW( type ) \
00074     catch( type& ex ){ \
00075         ex.setMark( __FILE__, __LINE__ ); \
00076     }
00077 
00078 
00079 #endif /*_ACTIVEMQ_EXCEPTIONS_EXCEPTIONDEFINES_H_*/