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

Method OutOfBoundsFrame

src/Exceptions.h:318–319  ·  view source on GitHub ↗

* @brief Constructor * * @param message A message to accompany the exception * @param frame_requested The out-of-bounds frame number requested * @param max_frames The maximum available frame number */

Source from the content-addressed store, hash-verified

316 * @param max_frames The maximum available frame number
317 */
318 OutOfBoundsFrame(std::string message, int64_t frame_requested, int64_t max_frames)
319 : ExceptionBase(message), FrameRequested(frame_requested), MaxFrames(max_frames) { }
320 virtual ~OutOfBoundsFrame() noexcept {}
321 std::string py_message() const override {
322 std::string out_msg(m_message

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected