Mercurial > pub > Impl
view Lib/IMPL/Web/NotAcceptableException.pm @ 246:2746a8e5a6c4
Fixed regressions in DOM due previous refactorings
Fixed ObjectToDOM transformation to handle a schema with mixed node types
author | sergey |
---|---|
date | Tue, 30 Oct 2012 01:17: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