Initial commit

This commit is contained in:
jslightham
2023-05-21 23:28:11 -04:00
commit 0360e7dfcc
31 changed files with 2068 additions and 0 deletions

8
P3/illegal_exception.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef ILLEGAL_EXCEPTION_H
#define ILLEGAL_EXCEPTION_H
#include <exception>
class illegal_exception : std::exception {};
#endif