comparison 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
comparison
equal deleted inserted replaced
98:00d88c5e8203 99:6dd659f6f66c
49 $action->Invoke(); 49 $action->Invoke();
50 50
51 $action->response->Complete; 51 $action->response->Complete;
52 }; 52 };
53 if ($@) { 53 if ($@) {
54 my $e = $@; 54 my $e = $@;
55 eval { $this->handlerError()->($this,$action,$e); 1;} or warn "Error in handlerError: ",$@; 55 # we are expect that this method is safe otherwise we can trust nothing in this wolrd
56 $this->handlerError()->($this,$action,$e);
56 } 57 }
57 } 58 }
58 } 59 }
59 60
60 sub FetchRequest { 61 sub FetchRequest {