Files
Dena/app/api/v2/management/exceptions/authentication.rb
2026-08-13 19:50:53 +03:30

17 lines
270 B
Ruby

# encoding: UTF-8
# frozen_string_literal: true
module API
module V2
module Management
module Exceptions
class Authentication < Base
def status
@options.fetch(:status, 401)
end
end
end
end
end
end