foodsoft/app/lib/api/errors.rb

7 lines
171 B
Ruby
Raw Normal View History

2018-10-13 20:16:35 +02:00
module Api::Errors
class Error < StandardError; end
2018-10-13 20:16:35 +02:00
# Authentication is handled by Doorkeeper, so no errors for that here
class PermissionRequired < Error; end
end