view lib/IMPL/Web/UnauthorizedException.pm @ 410:9335cf010b23 ref20150831

refactoring
author cin
date Mon, 14 Sep 2015 01:11:53 +0300
parents c6e90e02dd17
children
line wrap: on
line source

package IMPL::Web::UnauthorizedException;
use strict;

use IMPL::declare {
	base => {
		'IMPL::Web::Exception' => '@_'
	}
};

sub status {
	"401 Unauthorized"
}

1;

__END__

=pod

=head1 NAME

C<IMPL::Web::UnauthorizedException> - запрос требует идентификации пользователя.

=cut