class Pigment::Color::InvalidColorFormatError

Error raised when an invalid color format is used

Public Class Methods

new(object) click to toggle source
Calls superclass method
# File lib/pigment/color/invalid_color_format_error.rb, line 5
def initialize(object)
  super("Invalid Format #{object.inspect}")
end