view Lib/IMPL/Web/NotAcceptableException.pm @ 225:a1e868b0fba9

Bindings concept in progress
author sergey
date Fri, 31 Aug 2012 16:41:18 +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