view Lib/IMPL/Web/NotAcceptableException.pm @ 215:77a9934a44af

sync, migrating to XML::Compile
author cin
date Sun, 19 Aug 2012 22:27:43 +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