test to make sure the errors in components of resultset classes are reported right.
[dbsrgits/DBIx-Class.git] / t / lib / DBICErrorTest / ResultSet / WithError.pm
1 package DBICErrorTest::ResultSet::WithError;
2
3 use strict;
4 use warnings;
5
6 use base 'DBIx::Class::ResultSet';
7
8 __PACKAGE__->load_components('+DBICErrorTest::SyntaxError');
9
10 1;