view Lib/IMPL/Web/NotAcceptableException.pm @ 213:d6e2ea24af08

sync
author sergey
date Fri, 03 Aug 2012 01:15:15 +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