class Muwu::ProjectException::RsyncNotAvailable

Public Class Methods

new() click to toggle source
# File lib/muwu/project_exception/rsync_not_available.rb, line 6
def initialize
  $stderr.puts "#{self.class}"
end

Public Instance Methods

report() click to toggle source
# File lib/muwu/project_exception/rsync_not_available.rb, line 11
def report
  "rsync is not available"
end
type() click to toggle source
# File lib/muwu/project_exception/rsync_not_available.rb, line 16
def type
  :sync
end