9 lines
213 B
Ruby
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
|