refactor(exceptions): made header names consistent
All header names in the exceptions module now follow the same naming scheme.
This commit is contained in:
@@ -1,10 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <exception>
|
|
||||||
#include <source_location>
|
#include <source_location>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
|
|
||||||
namespace gridfire::exceptions {
|
namespace gridfire::exceptions {
|
||||||
class DebugException final : public GridFireError{
|
class DebugException final : public GridFireError{
|
||||||
@@ -1,11 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <exception>
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
#include <string>
|
|
||||||
#include <utility>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
|
||||||
|
|
||||||
namespace gridfire::exceptions {
|
namespace gridfire::exceptions {
|
||||||
class EngineError : public GridFireError {
|
class EngineError : public GridFireError {
|
||||||
|
|||||||
@@ -11,11 +11,7 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <exception>
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
#include <string>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
|
||||||
|
|
||||||
namespace gridfire::exceptions {
|
namespace gridfire::exceptions {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <exception>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <format>
|
#include <format>
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
|
|
||||||
namespace gridfire::exceptions {
|
namespace gridfire::exceptions {
|
||||||
class ReactionError : public GridFireError {
|
class ReactionError : public GridFireError {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
|
|
||||||
namespace gridfire::exceptions {
|
namespace gridfire::exceptions {
|
||||||
class SolverError : GridFireError {
|
class SolverError : GridFireError {
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <exception>
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
#include <string>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
|
||||||
|
|
||||||
namespace gridfire::exceptions {
|
namespace gridfire::exceptions {
|
||||||
class UtilityError : public GridFireError {
|
class UtilityError : public GridFireError {
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "gridfire/exceptions/gridfire_exception.h"
|
#include "gridfire/exceptions/error_gridfire.h"
|
||||||
#include "gridfire/exceptions/error_engine.h"
|
#include "gridfire/exceptions/error_engine.h"
|
||||||
#include "gridfire/exceptions/error_utils.h"
|
#include "gridfire/exceptions/error_utils.h"
|
||||||
#include "gridfire/exceptions/debug.h"
|
#include "gridfire/exceptions/error_debug.h"
|
||||||
#include "gridfire/exceptions/error_policy.h"
|
#include "gridfire/exceptions/error_policy.h"
|
||||||
#include "gridfire/exceptions/error_reaction.h"
|
#include "gridfire/exceptions/error_reaction.h"
|
||||||
#include "gridfire/exceptions/error_solver.h"
|
#include "gridfire/exceptions/error_solver.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user