9 lines
140 B
C++
9 lines
140 B
C++
#ifndef ILLEGAL_EXCEPTION_H
|
|
#define ILLEGAL_EXCEPTION_H
|
|
|
|
#include <exception>
|
|
|
|
class illegal_exception : std::exception {};
|
|
|
|
#endif
|