Exception: Vips::Error
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Vips::Error
- Defined in:
- lib/vips.rb
Overview
The ruby-vips error class.
Instance Method Summary collapse
-
#initialize(msg = nil) ⇒ Error
constructor
A new instance of Error.
-
#to_s ⇒ String
Pretty-print a Error.
Constructor Details
#initialize(msg = nil) ⇒ Error
Returns a new instance of Error.
624 625 626 627 628 629 630 631 632 633 |
# File 'lib/vips.rb', line 624 def initialize msg = nil if msg @details = msg elsif Vips.vips_error_buffer != "" @details = Vips.vips_error_buffer Vips.vips_error_clear else @details = nil end end |
Instance Method Details
#to_s ⇒ String
Pretty-print a Vips::Error.
638 639 640 641 642 643 644 |
# File 'lib/vips.rb', line 638 def to_s if !@details.nil? @details else super.to_s end end |