Mercurial > pub > Impl
view Lib/IMPL/Web/NotAcceptableException.pm @ 210:6adaeb86945d
added IMPL::Web::AutoLocator
author | sergey |
---|---|
date | Tue, 29 May 2012 20:07:22 +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