trabajo-afectivo/lib/exceptions.rb

10 lines
157 B
Ruby
Raw Normal View History

module Exceptions
class NotAuthorized < StandardError; end
class Forbidden < StandardError; end
class UnprocessableEntity < StandardError; end
end