Sha256: 290dc63fc35bd546998c42b0953377178f50076489b0d63681d2107bf5a27105
Contents?: true
Size: 424 Bytes
Versions: 72
Compression:
Stored size: 424 Bytes
Contents
module ForestLiana module Ability module Exceptions class RequireApproval < ForestLiana::Errors::ExpectedError attr_reader :data def initialize(data) @data = data super( 403, :forbidden, 'This action requires to be approved.', 'CustomActionRequiresApprovalError', ) end end end end end
Version data entries
72 entries across 72 versions & 1 rubygems