lib/pipeline/base.rb in tracksperanto-2.4.1 vs lib/pipeline/base.rb in tracksperanto-2.5.0
- old
+ new
@@ -11,10 +11,14 @@
class DimensionsRequiredError < RuntimeError
def message; "Width and height must be provided for this importer"; end
end
class NoTrackersRecoveredError < RuntimeError
- def message; "Could not recover any non-empty trackers from this file. Wrong import format maybe?"; end
+ def message;
+ "Could not recover any non-empty trackers from this file.\n" +
+ "Wrong import format maybe?\n" +
+ "Note that PFTrack will only export trackers from the solved segment of the shot.";
+ end
end
# The base pipeline is the whole process of track conversion from start to finish. The pipeline object organizes the import formats, scans them,
# applies the middlewares. Here's how a calling sequence for a pipeline looks like:
#
\ No newline at end of file