Sha256: ce28e31f1a7906007df30e01b724a8607794bea357a17f34fdc2a2ba4ab56138
Contents?: true
Size: 558 Bytes
Versions: 2
Compression:
Stored size: 558 Bytes
Contents
#ifndef BANDIT_MATCHER_EXCEPTION_H #define BANDIT_MATCHER_EXCEPTION_H #include <bandit/assertion_exception.h> namespace bandit { namespace Matchers { class MatcherException : public detail::assertion_exception { public: MatcherException(const std::string& filename, const unsigned linenumber, const std::string& message) : detail::assertion_exception(message, filename, linenumber) {} MatcherException(const MatcherException&) = default; virtual ~MatcherException() noexcept {} }; }} #endif // BANDIT_MATCHER_EXCEPTION_H
Version data entries
2 entries across 2 versions & 1 rubygems