Add ::Exception, and use throw instead of die.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
5
12bbb339 6use base qw/DBIx::Class::Relationship
b8e1e21f 7 DBIx::Class::SQL::OrderBy
12bbb339 8 DBIx::Class::SQL::Abstract
9 DBIx::Class::PK
8fe001e1 10 DBIx::Class::Table
11 DBIx::Class::SQL
510ca912 12 DBIx::Class::DB
78bab9ca 13 DBIx::Class::Exception
510ca912 14 DBIx::Class::AccessorGroup/;
ea2e61bf 15
161;
34d52be2 17
18=head1 NAME
19
20DBIx::Class::Core - Core set of DBIx::Class modules.
21
22=head1 DESCRIPTION
23
24This class just inherits from the various modules that makes
25up the Class::DBI core features.
26
27
28=head1 AUTHORS
29
30Matt S. Trout <perl-stuff@trout.me.uk>
31
32=head1 LICENSE
33
34You may distribute this code under the same terms as Perl itself.
35
36=cut
37