23 std::string&& message);
25 const char* funcName, std::string&&
stack,
26 std::string&& message);
28 int32_t
code() const noexcept {
return m_data->code; }
29 const char*
loc() const noexcept {
return m_data->loc.c_str(); }
30 const char*
stack() const noexcept {
return m_data->stack.c_str(); }
43 std::shared_ptr<Data> m_data;
62void ReportErrorV(int32_t status,
const char* fileName,
int lineNumber,
63 const char* funcName, fmt::string_view
format,
64 fmt::format_args args);
77template <
typename... Args>
78inline void ReportError(int32_t status,
const char* fileName,
int lineNumber,
79 const char* funcName, fmt::string_view
format,
82 fmt::make_format_args(args...));
100 const char* funcName, fmt::string_view
format,
101 fmt::format_args args);
103template <
typename... Args>
106 int lineNumber,
const char* funcName,
107 fmt::string_view
format, Args&&... args) {
109 fmt::make_format_args(args...));
113#define S(label, offset, message) inline constexpr int label = offset;
119#define S(label, offset, message) inline constexpr int label = offset;
128#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
137#define FRC_ReportError(status, format, ...) \
139 if ((status) != 0) { \
140 ::frc::ReportError(status, __FILE__, __LINE__, __FUNCTION__, \
141 format __VA_OPT__(, ) __VA_ARGS__); \
150#define FRC_ReportWarning(format, ...) \
152 ::frc::ReportError(::frc::warn::Warning, __FILE__, __LINE__, __FUNCTION__, \
153 format __VA_OPT__(, ) __VA_ARGS__); \
164#define FRC_MakeError(status, format, ...) \
165 ::frc::MakeError(status, __FILE__, __LINE__, __FUNCTION__, \
166 format __VA_OPT__(, ) __VA_ARGS__)
175#define FRC_CheckErrorStatus(status, format, ...) \
177 if ((status) < 0) { \
178 throw ::frc::MakeError(status, __FILE__, __LINE__, __FUNCTION__, \
179 format __VA_OPT__(, ) __VA_ARGS__); \
180 } else if ((status) > 0) { \
181 ::frc::ReportError(status, __FILE__, __LINE__, __FUNCTION__, \
182 format __VA_OPT__(, ) __VA_ARGS__); \
186#define FRC_AssertMessage(condition, format, ...) \
188 if (!(condition)) { \
189 throw ::frc::MakeError(::frc::err::AssertionFailure, __FILE__, __LINE__, \
190 __FUNCTION__, format __VA_OPT__(, ) __VA_ARGS__); \
194#define FRC_Assert(condition) FRC_AssertMessage(condition, #condition)
and restrictions which apply to each piece of software is included later in this file and or inside of the individual applicable source files The disclaimer of warranty in the WPILib license above applies to all code in and nothing in any of the other licenses gives permission to use the names of FIRST nor the names of the WPILib contributors to endorse or promote products derived from this software The following pieces of software have additional or alternate and or and nanopb were all modified for use in Google Inc All rights reserved Redistribution and use in source and binary with or without are permitted provided that the following conditions are this list of conditions and the following disclaimer *Redistributions in binary form must reproduce the above copyright this list of conditions and the following disclaimer in the documentation and or other materials provided with the distribution *Neither the name of Google Inc nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED BUT NOT LIMITED THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY OR CONSEQUENTIAL WHETHER IN STRICT OR EVEN IF ADVISED OF THE POSSIBILITY OF SUCH January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source code
Definition ThirdPartyNotices.txt:123
Runtime error exception.
Definition Errors.h:20
RuntimeError(int32_t code, const char *fileName, int lineNumber, const char *funcName, std::string &&stack, std::string &&message)
const char * stack() const noexcept
Definition Errors.h:30
const char * loc() const noexcept
Definition Errors.h:29
int32_t code() const noexcept
Definition Errors.h:28
RuntimeError(int32_t code, std::string &&loc, std::string &&stack, std::string &&message)
void Report() const
Reports error to Driver Station (using HAL_SendError).
RuntimeError MakeError(int32_t status, const char *fileName, int lineNumber, const char *funcName, fmt::string_view format, Args &&... args)
Definition Errors.h:105
RuntimeError MakeErrorV(int32_t status, const char *fileName, int lineNumber, const char *funcName, fmt::string_view format, fmt::format_args args)
Makes a runtime error exception object.
void ReportError(int32_t status, const char *fileName, int lineNumber, const char *funcName, fmt::string_view format, Args &&... args)
Reports an error to the driver station (using HAL_SendError).
Definition Errors.h:78
void ReportErrorV(int32_t status, const char *fileName, int lineNumber, const char *funcName, fmt::string_view format, fmt::format_args args)
Reports an error to the driver station (using HAL_SendError).
const char * GetErrorMessage(int32_t *code)
Gets error message string for an error code.