mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-21 21:52:11 +00:00
We use customized libc++ which uses raw pointers as std::vector::iterators. As per [expr.pre.incr](https://eel.is/c++draft/expr.compound#expr.pre.incr), builtin `operator++` can only be applied to lvalue, while `std::vector::begin()` returns an rvalue. See [this](https://godbolt.org/z/d3a1aKTWP) godbolt snippet for the details.
71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include <algorithm>
|
|
#include <exception>
|
|
#include <iterator>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "core/common/common.h"
|
|
#include "core/common/code_location.h"
|
|
|
|
namespace onnxruntime {
|
|
|
|
class NotImplementedException : public std::logic_error {
|
|
public:
|
|
explicit NotImplementedException(const char* _Message = "Function not yet implemented") noexcept : std::logic_error(_Message){};
|
|
explicit NotImplementedException(const std::string& _Message = "Function not yet implemented") noexcept : std::logic_error(_Message){};
|
|
};
|
|
|
|
class TypeMismatchException : public std::logic_error {
|
|
public:
|
|
TypeMismatchException() noexcept : logic_error("Type mismatch"){};
|
|
};
|
|
|
|
class OnnxRuntimeException : public std::exception {
|
|
public:
|
|
OnnxRuntimeException(const CodeLocation& location, const std::string& msg) noexcept
|
|
: OnnxRuntimeException(location, nullptr, msg) {
|
|
}
|
|
|
|
/**
|
|
Create a new exception that captures the location it was thrown from.
|
|
@param location Location in the source code the exception is being thrown from
|
|
@param failed_condition Optional string containing the condition that failed.
|
|
e.g. "tensor.Size() == input.Size()". May be nullptr.
|
|
@param msg Message containing additional information about the exception cause.
|
|
*/
|
|
OnnxRuntimeException(const CodeLocation& location, const char* failed_condition, const std::string& msg)
|
|
: location_{location} {
|
|
std::ostringstream ss;
|
|
|
|
ss << location.ToString(CodeLocation::kFilenameAndPath); // output full path in case just the filename is ambiguous
|
|
if (failed_condition != nullptr) {
|
|
ss << " " << failed_condition << " was false.";
|
|
}
|
|
|
|
ss << " " << msg << "\n";
|
|
if (!location.stacktrace.empty()) {
|
|
ss << "Stacktrace:\n";
|
|
// skip the first entry in the stacktrace as we have that information from location.ToString()
|
|
std::copy(std::next(location.stacktrace.begin()), location.stacktrace.end(), std::ostream_iterator<std::string>(ss, "\n"));
|
|
}
|
|
|
|
what_ = ss.str();
|
|
}
|
|
|
|
const char* what() const noexcept override {
|
|
return what_.c_str();
|
|
}
|
|
|
|
private:
|
|
const CodeLocation location_;
|
|
const std::vector<std::string> stacktrace_;
|
|
std::string what_;
|
|
};
|
|
|
|
} // namespace onnxruntime
|