class Hamburglar::InvalidURL

Raised when trying to assign an invalid gateway URL

Public Class Methods

new(url = nil) click to toggle source
Calls superclass method
# File lib/hamburglar/errors.rb, line 13
def initialize(url = nil)
  msg = "Invalid url"
  msg << ", #{url}" if url
  super msg
end