Sha256: d02d3cb9be0086f991183ea3b2348f44b239f7395e5ed21c49ba2d1d10070ce9

Contents?: true

Size: 578 Bytes

Versions: 4

Compression:

Stored size: 578 Bytes

Contents

#          Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.

module Ramaze

  # The general Namespace for Ramazes Errorclasses

  module Error
    # No action found on Controller
    class NoAction < StandardError; end

    # No Controller found for request
    class NoController < StandardError; end

    # Wrong parameter count for action
    class WrongParameterCount < StandardError; end

    # Error while transformation in template
    class Template < StandardError; end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ramaze-0.0.9 lib/ramaze/error.rb
ramaze-0.0.8 lib/ramaze/error.rb
ramaze-0.1.0 lib/ramaze/error.rb
ramaze-0.1.1 lib/ramaze/error.rb