libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::InternalError Class Reference

Exception type for grave internal errors. More...

#include <InternalError.hxx>

+ Inheritance diagram for cosmos::InternalError:

Public Member Functions

 InternalError (const std::string_view msg)
 
- Public Member Functions inherited from cosmos::CosmosError
 CosmosError (const std::string_view error_class, const std::string_view fixed_text={})
 
CosmosErrorsetInfo (const char *file, const size_t line, const char *func)
 Set exception context information.
 
const char * what () const override throw ()
 Implementation of the std::exception interface.
 
std::string shortWhat () const
 Returns a shorter description of the error without verbose context.
 
virtual void raise ()=0
 Throw the most specialized type of this object in the inheritance hierarchy.
 

Public Attributes

 COSMOS_ERROR_IMPL
 

Additional Inherited Members

- Protected Member Functions inherited from cosmos::CosmosError
virtual void generateMsg () const
 Append type specific error information to m_msg.
 
void setErrorClass (const std::string_view error_class)
 Allows to override error class to allow simpler implementation of derived types.
 
- Protected Attributes inherited from cosmos::CosmosError
std::string_view m_error_class
 Descriptive, unique error class label.
 
std::string m_msg
 Runtime generated error message.
 
bool m_msg_generated = false
 Whether m_msg has been assembled yet.
 
const char * m_file = nullptr
 
const char * m_func = nullptr
 
size_t m_line = 0
 

Detailed Description

Exception type for grave internal errors.

To be used in case e.g. elemental preconditions that are considered a given are not fulfilled.

Definition at line 13 of file InternalError.hxx.

Constructor & Destructor Documentation

◆ InternalError()

cosmos::InternalError::InternalError ( const std::string_view msg)
inlineexplicit

Definition at line 17 of file InternalError.hxx.

17 :
18 CosmosError{"InternalError"} {
19 m_msg = msg;
20 }
std::string m_msg
Runtime generated error message.

Member Data Documentation

◆ COSMOS_ERROR_IMPL

cosmos::InternalError::COSMOS_ERROR_IMPL

Definition at line 22 of file InternalError.hxx.


The documentation for this class was generated from the following file: