Sha256: b8b6cf7335cd8d00048ec6c2df103e28a1cad6fb678f66672c35ad88b4a53c9e
Contents?: true
Size: 632 Bytes
Versions: 22
Compression:
Stored size: 632 Bytes
Contents
# Copyright (c) 2008 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
22 entries across 22 versions & 5 rubygems