Exception: Vips::Error

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/vips.rb

Overview

The ruby-vips error class.

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ Error



639
640
641
642
643
644
645
646
647
648
# File 'lib/vips.rb', line 639

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_sString

Pretty-print a Vips::Error.



653
654
655
656
657
658
659
# File 'lib/vips.rb', line 653

def to_s
  if !@details.nil?
    @details
  else
    super.to_s
  end
end