comparison Lib/IMPL/Web/NotFoundException.pm @ 297:52aae1b85084

Added transformations support to JSONView
author cin
date Mon, 11 Mar 2013 01:22:24 +0400
parents 47f77e6409f7
children
comparison
equal deleted inserted replaced
296:86ff93b34f2a 297:52aae1b85084
2 use strict; 2 use strict;
3 3
4 use IMPL::declare { 4 use IMPL::declare {
5 base => { 5 base => {
6 'IMPL::Web::Exception' => '@_' 6 'IMPL::Web::Exception' => '@_'
7 } 7 },
8 };
9
10 use IMPL::Resources::Strings {
11 message => 'The specified resource isn\'t found.'
8 }; 12 };
9 13
10 sub status { 14 sub status {
11 "404 Not found" 15 "404 Not found"
12 } 16 }