Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
663 B

  1. # $Id: Error.pm 32 2003-11-26 13:52:18Z struan $
  2. package WebService::Validator::HTML::W3C::Error;
  3. use strict;
  4. use base qw(Class::Accessor);
  5. __PACKAGE__->mk_accessors( qw( line col msg ) );
  6. 1;
  7. __END__
  8. =head1 NAME
  9. WebService::Validator::HTML::W3C::Error - Error messages from the W3Cs online Validator
  10. =head1 DESCRIPTION
  11. This is a wee internal module for WebService::Validator::HTML::W3C. It has
  12. three methods: line, col and msg which return the line number, column number
  13. and the error that occured at that location in a validated page.
  14. =head1 SEE ALSO
  15. L<WebService::Validator::HTML::W3C>
  16. =head1 AUTHOR
  17. Struan Donald E<lt>struan@cpan.orgE<gt>
  18. =cut