Program Listing for File Exceptions.h

Return to documentation for file (Source\Common\Inc\Utils\Exceptions.h)

#pragma once

#include <stdexcept>

namespace Azura {

class NotImplementedException : public std::logic_error {
 public:
  virtual char const *what() const {
    return "Function or branch not yet implemented.";
  }
};

}  // namespace Azura