Sha256: fccf23dc26862e22df00ee4c585c435af72d9e8aaaf8b5174ec5ee6404b0a016

Contents?: true

Size: 287 Bytes

Versions: 1

Compression:

Stored size: 287 Bytes

Contents

require 'hackeroo/error/server_error'

module Hackeroo
  class Error
    # Raised when Hackeroo returns the HTTP status code 500
    class InternalServerError < Hackeroo::Error::ServerError
      HTTP_STATUS_CODE = 500
      MESSAGE = "Something is technically wrong."
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hackeroo-0.1.0 lib/hackeroo/error/internal_server_error.rb