class SpriteFactory::Library::ImageMagick::Error

Represents an error from an underlying ImageMagick call

Attributes

args[R]
command[R]
output[R]

Public Class Methods

new(msg, command, args, output) click to toggle source
Calls superclass method
# File lib/sprite_factory/library/image_magick.rb, line 11
def initialize(msg, command, args, output)
  super(msg)
  @command = command
  @args = args
  @output = output
end