Exception: Coradoc::IncludeTooLargeError
- Defined in:
- lib/coradoc/errors.rb
Overview
Error raised when an include target exceeds the resolver's size limit.
Instance Attribute Summary collapse
-
#target ⇒ Object
readonly
Returns the value of attribute target.
Instance Method Summary collapse
-
#initialize(target) ⇒ IncludeTooLargeError
constructor
A new instance of IncludeTooLargeError.
Constructor Details
#initialize(target) ⇒ IncludeTooLargeError
Returns a new instance of IncludeTooLargeError.
355 356 357 358 |
# File 'lib/coradoc/errors.rb', line 355 def initialize(target) @target = target super("Include target too large to read: #{target}") end |
Instance Attribute Details
#target ⇒ Object (readonly)
Returns the value of attribute target.
353 354 355 |
# File 'lib/coradoc/errors.rb', line 353 def target @target end |