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

Exception type for generic runtime errors. More...

#include <RuntimeError.hxx>

+ Inheritance diagram for cosmos::RuntimeError:

Public Member Functions

 RuntimeError (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 generic runtime errors.

To be used in cases when not an immediate system call failed but other logical conditions are violated that make continuing impossible.

Definition at line 13 of file RuntimeError.hxx.

Constructor & Destructor Documentation

◆ RuntimeError()

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

Definition at line 17 of file RuntimeError.hxx.

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

Member Data Documentation

◆ COSMOS_ERROR_IMPL

cosmos::RuntimeError::COSMOS_ERROR_IMPL

Definition at line 22 of file RuntimeError.hxx.


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