class Trino::Client::TrinoHttpError

Attributes

status[R]

Public Class Methods

new(status, message) click to toggle source
Calls superclass method
# File lib/trino/client/errors.rb, line 21
def initialize(status, message)
  super(message)
  @status = status
end