.. _program_listing_file_lib_exceptions.hpp: Program Listing for File exceptions.hpp ======================================= |exhale_lsh| :ref:`Return to documentation for file ` (``lib/exceptions.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once class IndicatorNotFoundException : public std::exception { public: std::string msg; IndicatorNotFoundException(std::string msg) : msg(msg) {} const char* what() const throw() { return this->msg.c_str(); } }; class BadCausemosInputException : public std::exception { public: std::string msg; BadCausemosInputException(std::string msg) : msg(msg) {} BadCausemosInputException() : msg("Bad CauseMos Input") {} const char* what() const throw() { return this->msg.c_str(); } };