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