Files
ece-250/P3/illegal_exception.h
2023-05-21 23:28:11 -04:00

9 lines
140 B
C++

#ifndef ILLEGAL_EXCEPTION_H
#define ILLEGAL_EXCEPTION_H
#include <exception>
class illegal_exception : std::exception {};
#endif