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