class Berkshelf::GraphvizCommandFailed

def initialize(command, output)

def initialize(command, output)
  @command = command
  @output  = output
end

def to_s

def to_s
  "The Graphviz command `#{@command}` failed to execute properly. Here " \
  "is the standard error from the command:\n\n#{@output}"
end