Mercurial > pub > Impl
view Lib/IMPL/Web/NotAcceptableException.pm @ 222:84a6382b49c8
resources schema in progress
author | sergey |
---|---|
date | Mon, 27 Aug 2012 17:28:32 +0400 |
parents | c8fe3f84feba |
children | 47f77e6409f7 |
line wrap: on
line source
package IMPL::Web::NotAcceptableException; use strict; use IMPL::declare { base => { 'IMPL::Web::Exception' => '@_' } }; sub code { 406; } 1; __END__ =pod =head1 NAME C<IMPL::Web::NotAcceptableException> Исключение в случае, если запрошенный ресурс не может быть выдан в указанном виде. =cut