3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-22 11:07:51 +00:00
z3/src/tactic/tactic_exception.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

41 lines
848 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
tactic_exception.h
Abstract:
Tactic expection object.
Author:
Leonardo (leonardo) 2012-08-15
Notes:
--*/
#ifndef TACTIC_EXCEPTION_H_
#define TACTIC_EXCEPTION_H_
#include"z3_exception.h"
#include"common_msgs.h"
class tactic_exception : public z3_exception {
protected:
std::string m_msg;
public:
tactic_exception(char const * msg):m_msg(msg) {}
virtual ~tactic_exception() {}
virtual char const * msg() const { return m_msg.c_str(); }
};
#define TACTIC_CANCELED_MSG Z3_CANCELED_MSG
#define TACTIC_MAX_MEMORY_MSG Z3_MAX_MEMORY_MSG
#define TACTIC_MAX_SCOPES_MSG Z3_MAX_SCOPES_MSG
#define TACTIC_MAX_STEPS_MSG Z3_MAX_STEPS_MSG
#define TACTIC_MAX_FRAMES_MSG Z3_MAX_FRAMES_MSG
#define TACTIC_NO_PROOF_GEN_MSG Z3_NO_PROOF_GEN_MSG
#endif