module Billomat::ResourceWithoutWriteAccess

Public Instance Methods

create() click to toggle source
# File lib/billomat-rb.rb, line 86
def create
  raise MethodNotAvailable, "Cannot save #{self.class.name} over billomat api"
end
destroy() click to toggle source
# File lib/billomat-rb.rb, line 90
def destroy
  raise MethodNotAvailable, "Cannot save #{self.class.name} over billomat api"
end
save() click to toggle source
# File lib/billomat-rb.rb, line 82
def save
  raise MethodNotAvailable, "Cannot save #{self.class.name} over billomat api"
end