log.h 322 字节
Newer Older
S
superjom 已提交
1 2
#ifndef VISUALDL_UTILS_LOG_H
#define VISUALDL_UTILS_LOG_H
3 4

#include <stdexcept>
S
superjom 已提交
5

6 7 8 9 10 11 12 13 14 15 16 17 18 19
namespace visualdl {

namespace log {

class NotImplementedException : public std::logic_error {
public:
  NotImplementedException() : std::logic_error{"Function not implemented"} {}
};

}  // namespace log

}  // namespace visualdl

#endif