exception.h 289 B

1234567891011121314151617
  1. //
  2. // exception.h
  3. // dice-roll
  4. //
  5. // Created by Sam Jaffe on 12/1/18.
  6. // Copyright © 2018 Sam Jaffe. All rights reserved.
  7. //
  8. #pragma once
  9. #include <stdexcept>
  10. namespace dice {
  11. struct unexpected_token : public std::runtime_error {
  12. unexpected_token(long long position);
  13. };
  14. }