exceptions.h
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// 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(++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