13 lines
231 B
C++
13 lines
231 B
C++
#ifndef STOCKFULL_HPP
|
|
#define STOCKFULL_HPP
|
|
|
|
#include <stdexcept>
|
|
|
|
class StockFull : public std::runtime_error
|
|
{
|
|
public:
|
|
StockFull(const std::string &message)
|
|
: std::runtime_error(message) {}
|
|
};
|
|
|
|
#endif // STOCKFULL_HPP
|