class Motion::BadRevisionPathsError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/motion/errors.rb, line 171
def initialize
  super(
    "Revision paths must be a `Rails::Paths::Root` object or an object " \
    "that responds to `all_paths.flat_map(&:existent)` and returns an " \
    "Array of strings representing full paths."
  )
end