Kryptostack
Enumerations | Functions
error.h File Reference

Definitions and functions for error handling. More...

#include <string>
#include <cstdint>
#include <source_location>
+ Include dependency graph for error.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  OpError : std::uint8_t {
  invalidexit , rangecheck , stackunderflow , typecheck ,
  unmatchedmark , dictstackunderflow , undefinedresult , syntaxerror ,
  undefined
}
 Operator error code enum.
 
enum  InError : std::uint8_t {
  cmdline , parsererror , helptext , quit ,
  memory , internal , other
}
 Interpreter error code enum.
 

Functions

void opErrExit (OpError p_err, const std::string &p_details="", const std::source_location p_location=std::source_location::current())
 Operator error message to interpreter cout_ and exit(1).
 
void inErrExit (InError p_err, const std::string &p_details="", const std::source_location p_location=std::source_location::current())
 Interpreter error message to interpreter cout_ and exit(1).
 

Detailed Description

Definitions and functions for error handling.