class Abrizer::ReadAdaptationsError

This error is raised if Abrizer::ReadAdaptations is unable to determine the adaptations that have or will be created for a given mezzanine file.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/abrizer/errors.rb, line 6
def initialize
  msg = "Unable to read adaptations. Either inlude the path to a master file or an identifier. If passing just the identifier you must have created an adaptations.json file to read in or as a final fallback have already created a VP9 derivative."
  super(msg)
end