lib/lhc/errors/server_error.rb
# frozen_string_literal: true class LHC::ServerError < LHC::Error end class LHC::InternalServerError < LHC::ServerError end class LHC::NotImplemented < LHC::ServerError end class LHC::BadGateway < LHC::ServerError end class LHC::ServiceUnavailable < LHC::ServerError end class LHC::GatewayTimeout < LHC::ServerError end class LHC::HttpVersionNotSupported < LHC::ServerError end class LHC::InsufficientStorage < LHC::ServerError end class LHC::NotExtended < LHC::ServerError end