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_ACTIVEMQEXCEPTION_H_ 00018 #define _ACTIVEMQ_EXCEPTIONS_ACTIVEMQEXCEPTION_H_ 00019 00020 #ifdef _MSC_VER 00021 #pragma warning( disable : 4250 ) 00022 #endif 00023 00024 #include <activemq/util/Config.h> 00025 #include <cms/CMSException.h> 00026 #include <decaf/lang/Exception.h> 00027 #include <activemq/exceptions/ExceptionDefines.h> 00028 00029 namespace activemq { 00030 namespace exceptions { 00031 00032 /* 00033 * Base class for all exceptions. 00034 */ 00035 class AMQCPP_API ActiveMQException : public decaf::lang::Exception { 00036 public: 00037 00041 ActiveMQException(); 00042 00049 ActiveMQException(const ActiveMQException& ex); 00050 00057 ActiveMQException(const decaf::lang::Exception& ex); 00058 00073 ActiveMQException(const char* file, const int lineNumber, const char* msg, ...); 00074 00091 ActiveMQException(const char* file, const int lineNumber, const std::exception* cause, const char* msg, ...); 00092 00093 virtual ~ActiveMQException() throw(); 00094 00102 virtual ActiveMQException* clone() const; 00103 00109 virtual cms::CMSException convertToCMSException() const; 00110 00111 }; 00112 00113 }} 00114 00115 #endif /*_ACTIVEMQ_EXCEPTIONS_ACTIVEMQEXCEPTION_H_*/
1.6.1