fix(error_solver): inherit the public GridFireError interface

added public so that public members and methods of GridFireError can be
used by all SolverError exceptions
This commit is contained in:
2025-11-21 14:30:53 -05:00
parent 3fa23778e8
commit 9f56ba0083

View File

@@ -3,7 +3,7 @@
#include "gridfire/exceptions/error_gridfire.h" #include "gridfire/exceptions/error_gridfire.h"
namespace gridfire::exceptions { namespace gridfire::exceptions {
class SolverError : GridFireError { class SolverError : public GridFireError {
using GridFireError::GridFireError; using GridFireError::GridFireError;
}; };