Kryptostack
error.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <string>
20#include <cstdint>
21#include <source_location>
22
23
25enum OpError : std::uint8_t {
26 invalidexit,
27 rangecheck,
28 stackunderflow,
29 typecheck,
30 unmatchedmark,
31 dictstackunderflow,
32 undefinedresult,
33 syntaxerror,
34 undefined
35};
36
38enum InError : std::uint8_t {
39 cmdline,
40 parsererror,
41 helptext,
42 quit,
43 memory,
44 internal,
45 other
46};
47
49[[noreturn]] void opErrExit( OpError p_err,
50 const std::string & p_details = "" ,
51 const std::source_location p_location = std::source_location::current()
52 );
53
55[[noreturn]] void inErrExit( InError p_err,
56 const std::string & p_details = "" ,
57 const std::source_location p_location = std::source_location::current()
58 );
OpError
Operator error code enum.
Definition: error.h:25
InError
Interpreter error code enum.
Definition: error.h:38
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).
Definition: error.cpp:48
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).
Definition: error.cpp:27