Mercurial > pub > Impl
diff Lib/IMPL/Web/Application.pm @ 99:6dd659f6f66c
Minor changes, DOM schema is in development (in the aspect of a forms)
author | wizard |
---|---|
date | Wed, 05 May 2010 17:33:55 +0400 |
parents | 964587c5183c |
children | e4f15cbc3f1a |
line wrap: on
line diff
--- a/Lib/IMPL/Web/Application.pm Wed May 05 01:07:31 2010 +0400 +++ b/Lib/IMPL/Web/Application.pm Wed May 05 17:33:55 2010 +0400 @@ -51,8 +51,9 @@ $action->response->Complete; }; if ($@) { - my $e = $@; - eval { $this->handlerError()->($this,$action,$e); 1;} or warn "Error in handlerError: ",$@; + my $e = $@; + # we are expect that this method is safe otherwise we can trust nothing in this wolrd + $this->handlerError()->($this,$action,$e); } } }