abstract class Lucky::ErrorAction

Included Modules

Defined in:

lucky/error_action.cr

Constant Summary

EXPOSURES = [] of Symbol

Constructors

Instance Method Summary

Macro Summary

Instance methods inherited from module Lucky::Redirectable

redirect(to route : Lucky::RouteHelper, status = 302) : Lucky::TextResponse
redirect(to action : Lucky::Action.class, status = 302) : Lucky::TextResponse
redirect(to path : String, status : HTTP::Status) : Lucky::TextResponse
redirect(to path : String, status : Int32 = 302) : Lucky::TextResponse
redirect
, redirect_back(*, fallback : Lucky::Action.class, status = 302, allow_external = false)
redirect_back(*, fallback : Lucky::RouteHelper, status = 302, allow_external = false)
redirect_back(*, fallback : String, status : HTTP::Status, allow_external = false)
redirect_back(*, fallback : String, status : Int32 = 302, allow_external : Bool = false)
redirect_back

Instance methods inherited from module Lucky::Renderable

component(comp : Lucky::BaseComponent.class, status : Int32 | Nil = nil, **named_args) : Lucky::TextResponse
component(comp : Lucky::BaseComponent.class, status : HTTP::Status, **named_args) : Lucky::TextResponse
component
, data(data : String, content_type : String = "application/octet-stream", disposition : String = "attachment", filename : String | Nil = nil, status : Int32 | Nil = nil) : Lucky::DataResponse data, file(path : String, content_type : String | Nil = nil, disposition : String = "attachment", filename : String | Nil = nil, status : Int32 | Nil = nil) : Lucky::FileResponse
file(path : String, content_type : String | Nil = nil, disposition : String = "attachment", filename : String | Nil = nil, status : HTTP::Status = HTTP::Status::OK) : Lucky::FileResponse
file
, head(status : Int32) : Lucky::TextResponse
head(status : HTTP::Status) : Lucky::TextResponse
head
, json(body, status : Int32 | Nil = nil) : Lucky::TextResponse
json(body, status : HTTP::Status) : Lucky::TextResponse
json
, plain_text(body : String, status : Int32 | Nil = nil) : Lucky::TextResponse
plain_text(body : String, status : HTTP::Status) : Lucky::TextResponse
plain_text
, raw_json(body : String, status : Int32 | Nil = nil) : Lucky::TextResponse
raw_json(body : String, status : HTTP::Status) : Lucky::TextResponse
raw_json
, send_text_response(body : String, content_type : String, status : Int32 | Nil = nil) : Lucky::TextResponse send_text_response, xml(body : String, status : Int32 | Nil = nil) : Lucky::TextResponse
xml(body, status : HTTP::Status) : Lucky::TextResponse
xml

Constructor Detail

def self.new(context : HTTP::Server::Context) #

[View source]

Instance Method Detail

def _dont_report #

[View source]
def context : HTTP::Server::Context #

[View source]
def cookies(*args, **options) #

def cookies(*args, **options, &) #

abstract def default_render(error : Exception) : Lucky::Response #

[View source]
def flash(*args, **options) #

def flash(*args, **options, &) #

def perform_action(error : Exception) #

[View source]
def render_exception_page(error : Exception, status : Int) : Lucky::Response #

[View source]
abstract def report(error : Exception) : Nil #

[View source]
def request(*args, **options) #

def request(*args, **options, &) #

def response(*args, **options) #

def response(*args, **options, &) #

def session(*args, **options) #

def session(*args, **options, &) #

Macro Detail

macro dont_report(exception_classes) #

[View source]