| Class | Mack::Errors::InvalidRenderType |
| In: |
lib/mack/errors/errors.rb
|
| Parent: | StandardError |
Raised when an action returns something other then a string.
Example:
class FooController
include Mack::Controller
def index
[1,2,3,4]
end
end