class Serverkit::Errors::UnknownResourceTypeError

Public Class Methods

new(type) click to toggle source

@param [String] type

# File lib/serverkit/errors/unknown_resource_type_error.rb, line 7
def initialize(type)
  @type = type
end

Public Instance Methods

to_s() click to toggle source

@return [String]

# File lib/serverkit/errors/unknown_resource_type_error.rb, line 12
def to_s
  "Unknown `#{@type}` resource type"
end