logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

HTML::Widget::Error - Error

Author

       Sebastian Riedel, "sri@oook.de"

Description

       Error.

License

       This library is free software, you can redistribute it and/or modify it under the same terms as Perl
       itself.

perl v5.36.0                                       2023-08-10                           HTML::Widget::Error(3pm)

Methods

name
       Arguments: $name

       Return Value: $name

   message
       Arguments: $message

       Return Value: $message

   no_render
       Arguments: $bool

       If true, this error will not be displayed by "$result->as_xml".

       This is used internally used by "render_errors" in HTML::Widget::Constraint.

   type
       Arguments: $type

       Return Value: $type

Name

       HTML::Widget::Error - Error

Synopsis

           my @errors = $form->errors('foo');
           for my $error (@errors) {
               print $error->type;
               print $error->message;
           }

See Also