Files
BlitzNext/compiler/lib/ex.hpp
T
Michael Fabian 'Xaymar' Dirks c4947bd12a compiler: Move and modernize
compiler is blitzcc, what I previously called compiler is now compiler_lib
2019-01-19 18:28:07 +01:00

11 lines
302 B
C++

#pragma once
#include <string>
struct BlitzException {
std::string ex; //what happened
int pos; //source offset
std::string file;
BlitzException(const std::string& ex) : ex(ex), pos(-1) {}
BlitzException(const std::string& ex, int pos, const std::string& t) : ex(ex), pos(pos), file(t) {}
};