foodsoft/lib/api/errors.rb
2018-10-13 20:16:35 +02:00

5 lines
170 B
Ruby

module Api::Errors
class Error < StandardError; end
# Authentication is handled by Doorkeeper, so no errors for that here
class PermissionRequired < Error; end
end