* @brief Constructor * * @param message A message to accompany the exception * @param point_requested The out-of-bounds point requested * @param max_points The maximum available point value */
| 340 | * @param max_points The maximum available point value |
| 341 | */ |
| 342 | OutOfBoundsPoint(std::string message, int point_requested, int max_points) |
| 343 | : ExceptionBase(message), PointRequested(point_requested), MaxPoints(max_points) { } |
| 344 | virtual ~OutOfBoundsPoint() noexcept {} |
| 345 | std::string py_message() const override { |
| 346 | std::string out_msg(m_message |
nothing calls this directly
no outgoing calls
no test coverage detected