class Rookout::Exceptions::RookNonPrimitiveObjectType

Public Class Methods

new(path) click to toggle source
Calls superclass method Rookout::Exceptions::ToolException::new
# File lib/rookout/exceptions.rb, line 86
def initialize path
  super "Object #{path} must be of primitive type, such as: string, int, long etc",
        { "path" => path }
end