# File lib/etherpad-lite/models/padded.rb, line 7
    def pad(id, options={})
      begin
        Pad.create(instance, id, options)
      # Pad alreaded exists
      rescue Error
        Pad.new(instance, id, options)
      end
    end