| 1234567891011121314151617 |
- //
- // exception.h
- // dice-roll
- //
- // Created by Sam Jaffe on 12/1/18.
- // Copyright © 2018 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include <stdexcept>
- namespace dice {
- struct unexpected_token : public std::runtime_error {
- unexpected_token(long long position);
- };
- }
|