class Thinreports::Errors::UnknownShapeStyleName
Public Class Methods
new(style, availables)
click to toggle source
Calls superclass method
# File lib/thinreports/core/errors.rb, line 9 def initialize(style, availables) super("The specified style name, '#{style}', cannot be used. " \ "The available styles are #{availables.map { |s| ":#{s}" }.join(', ')}.") end