class Berkshelf::GraphvizCommandFailed
Public Class Methods
new(command, output)
click to toggle source
# File lib/berkshelf/errors.rb, line 520 def initialize(command, output) @command = command @output = output end
Public Instance Methods
to_s()
click to toggle source
# File lib/berkshelf/errors.rb, line 525 def to_s "The Graphviz command `#{@command}` failed to execute properly. Here " \ "is the standard error from the command:\n\n#{@output}" end
Also aliased as: message