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