class CFoundry::InvalidTarget

Attributes

target[R]

Public Class Methods

new(target) click to toggle source
# File lib/cfoundry/errors.rb, line 27
def initialize(target)
  @target = target
end

Public Instance Methods

to_s() click to toggle source
# File lib/cfoundry/errors.rb, line 31
def to_s
  "Invalid target URI: #{@target}"
end