Limo
A simple mod manager
Loading...
Searching...
No Matches
parseerror.h
Go to the documentation of this file.
1
5
6#pragma once
7
8#include <stdexcept>
9
10
14class ParseError : public std::runtime_error
15{
16public:
21 ParseError(const char* message) : std::runtime_error(message) {}
26 ParseError(const std::string& message) : std::runtime_error(message) {}
27};
ParseError(const char *message)
Constructor.
Definition parseerror.h:21
ParseError(const std::string &message)
Constructor.
Definition parseerror.h:26