Add ::Exception, and use throw instead of die.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
1 package DBIx::Class;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::CDBICompat DBIx::Class::Core/;
7
8 use vars qw($VERSION);
9
10 $VERSION = '0.01';
11
12 1;
13
14 =head1 NAME 
15
16 DBIx::Class - Because the brain is a terrible thing to waste.
17
18 =head1 SYNOPSIS
19
20 =head1 DESCRIPTION
21
22 This is a sql to oop mapper, inspired by the L<Class::DBI> framework, 
23 and meant to support compability with it, while restructuring the 
24 insides, and making it possible to support some new features like 
25 self-joins, distinct, group bys and more.
26
27 =head1 AUTHORS
28
29 Matt S. Trout <perl-stuff@trout.me.uk>
30
31 =head1 LICENSE
32
33 You may distribute this code under the same terms as Perl itself.
34
35 =cut
36