Files
discourse-hledger/lib/hledger/output_limit_error.rb
T

9 lines
213 B
Ruby

# frozen_string_literal: true
module Hledger
# Raised when hledger produced more output than the configured cap, which
# means any captured JSON would be truncated.
class OutputLimitError < Error
end
end