devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Ruby Source Code Warehouse" project. The intent of this project is to help you "Learn Ruby by Example" TM.

Other links

The source code

# Copyritght (c) 2002 TANIGUCHI Takaki
# This program is distributed under the GNU GPL 2 or later.

module AsWiki
  class AsWikiError < RuntimeError
  end
  class TimestampMismatch < AsWikiError
  end
  class EditPageCall < AsWikiError
    def initialize(pname)
      @pname = pname
    end
    attr_reader :pname
  end
  class SaveConflict < EditPageCall
    def initialize(pname, body)
      @pname = pname
      @body  = body
    end
    attr_reader :pname, :body
  end
end




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com