Property definitions

github $ GithubAPIError :: defaultinit
# An Error returned by https://api.github.com
#
# Anything that can occurs when sending request to the API:
# * Can't connect to API
# * Ressource not found
# * Validation error
# * ...
class GithubAPIError
	super GithubError

	# Status code obtained
	var status_code: Int

	# URI that returned the error
	var requested_uri: String
end
lib/github/api.nit:477,1--492,3