class Errors::InvalidDimensionArgument

Raised when x or y arguments are not > 0

Public Class Methods

new(key, value) click to toggle source
Calls superclass method
# File lib/mosaiq/errors.rb, line 6
def initialize(key, value)
  msg = "Argument '#{key}' cannot be '#{value.inspect}'. Please provide a number greater than 0."
  super msg
end