Sha256: dd7824a15d6460e54f72de1f8b61bc0cec53b4fbde537168bb7a3aeb9270016b
Contents?: true
Size: 942 Bytes
Versions: 20
Compression:
Stored size: 942 Bytes
Contents
module Paperclip # A base error class for Paperclip. Most of the error that will be thrown # from Paperclip will inherits from this class. class Error < StandardError end module Errors # Will be thrown when a storage method is not found. class StorageMethodNotFound < Paperclip::Error end # Will be thrown when a command or executable is not found. class CommandNotFoundError < Paperclip::Error end # Will be thrown when ImageMagic cannot determine the uploaded file's # metadata, usually this would mean the file is not an image. class NotIdentifiedByImageMagickError < Paperclip::Error end # Will be thrown if the interpolation is creating an infinite loop. If you # are creating an interpolator which might cause an infinite loop, you # should be throwing this error upon the infinite loop as well. class InfiniteInterpolationError < Paperclip::Error end end end
Version data entries
20 entries across 20 versions & 2 rubygems