foodsoft/lib/api/errors.rb
2021-03-02 09:12:19 +01:00

6 lines
171 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