Sha256: 07a95a08c430eeadf1559157ada7a4be268513342963a653481d30810ce146d7
Contents?: true
Size: 561 Bytes
Versions: 3
Compression:
Stored size: 561 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 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ramaze-0.1.2 | lib/ramaze/error.rb |
ramaze-0.1.3 | lib/ramaze/error.rb |
ramaze-0.1.4 | lib/ramaze/error.rb |