MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / OutOfBoundsPoint

Method OutOfBoundsPoint

src/Exceptions.h:342–343  ·  view source on GitHub ↗

* @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 */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected