mirror of https://gitee.com/bigwinds/arangodb
97 lines
3.3 KiB
C++
97 lines
3.3 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief arango exceptions
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2004-2013 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// @author Jan Steemann
|
|
/// @author Copyright 2009-2013, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TRIAGENS_ARANGO_UTILS_EXCEPTION_H
|
|
#define TRIAGENS_ARANGO_UTILS_EXCEPTION_H 1
|
|
|
|
#include "Basics/Common.h"
|
|
#include "Basics/Exceptions.h"
|
|
|
|
#include <errno.h>
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public macros
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief throws an arango exception with an error code
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define THROW_ARANGO_EXCEPTION(code) \
|
|
throw triagens::arango::Exception(code, "", __FILE__, __LINE__)
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief throws an exception for internal errors
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define THROW_ARANGO_EXCEPTION_STRING(code, details) \
|
|
throw triagens::arango::Exception(code, details, __FILE__, __LINE__)
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public types
|
|
// -----------------------------------------------------------------------------
|
|
|
|
namespace triagens {
|
|
namespace arango {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief arango exception type
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class Exception : public virtual std::exception {
|
|
public:
|
|
Exception (int code,
|
|
std::string const& details,
|
|
char const* file,
|
|
int line);
|
|
|
|
~Exception () throw ();
|
|
|
|
public:
|
|
char const * what () const throw ();
|
|
|
|
std::string message () const throw ();
|
|
|
|
int code () const throw();
|
|
|
|
protected:
|
|
std::string const _details;
|
|
char const* _file;
|
|
int const _line;
|
|
int const _code;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|/// @page\\|// --SECTION--\\|/// @\\}"
|
|
// End:
|