class CB::Client::Error

Defined in:

client/error.cr

Constant Summary

Log = ::Log.for("client")

Constructors

Instance Method Summary

Constructor Detail

def self.new(method : String, path : String, resp : HTTP::Client::Response) #

[View source]

Instance Method Detail

def bad_request? #

[View source]
def forbidden? #

[View source]
def message #

[View source]
def method : String #

[View source]
def method=(method : String) #

[View source]
def not_found? #

[View source]
def path : String #

[View source]
def path=(path : String) #

[View source]
def resp : HTTP::Client::Response #

[View source]
def resp=(resp : HTTP::Client::Response) #

[View source]
def to_s(io : IO) #
Description copied from class Reference

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>

[View source]
def unauthorized? #

[View source]