Sha256: 5ef86b10bc968c9df95d3599f8d9c10197a4cca6a45adc643591736c7e25a926
Contents?: true
Size: 632 Bytes
Versions: 2
Compression:
Stored size: 632 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 class Error < StandardError # No action found on Controller class NoAction < Error; end # No Controller found for request class NoFilter < Error; end # No Controller found for request class NoController < Error; end # Wrong parameter count for action class WrongParameterCount < Error; end # Error while transformation in template class Template < Error; end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ramaze-0.2.1 | lib/ramaze/error.rb |
ramaze-0.2.0 | lib/ramaze/error.rb |