comparison Lib/IMPL/Web/NotAcceptableException.pm @ 206:c8fe3f84feba

+IMPL::Web::Handlers::ViewSelector +IMPL::Web::Handlers::ErrorHandler *IMPL::Web::Handlers::RestController moved types mappings to ViewSelector
author sergey
date Thu, 03 May 2012 16:48:39 +0400
parents
children 47f77e6409f7
comparison
equal deleted inserted replaced
205:891c04080658 206:c8fe3f84feba
1 package IMPL::Web::NotAcceptableException;
2 use strict;
3
4 use IMPL::declare {
5 base => {
6 'IMPL::Web::Exception' => '@_'
7 }
8 };
9
10 sub code {
11 406;
12 }
13
14 1;
15
16 __END__
17
18 =pod
19
20 =head1 NAME
21
22 C<IMPL::Web::NotAcceptableException> Исключение в случае, если запрошенный ресурс не может
23 быть выдан в указанном виде.
24
25 =cut