Mercurial > pub > Impl
view Lib/IMPL/Web/NotAcceptableException.pm @ 359:833e663796c4
TTView: added view variable to pass rendering context between controls
TTView: display function renamed to display_for
WebResource: resources now marked with roles for searching a desired resource by a role in the resource chain
author | sergey |
---|---|
date | Mon, 25 Nov 2013 02:19:31 +0400 |
parents | 47f77e6409f7 |
children |
line wrap: on
line source
package IMPL::Web::NotAcceptableException; use strict; use IMPL::declare { base => { 'IMPL::Web::Exception' => '@_' } }; sub status { "406 Not acceptable" } 1; __END__ =pod =head1 NAME C<IMPL::Web::NotAcceptableException> Исключение в случае, если запрошенный ресурс не может быть выдан в указанном виде. =cut