NAME
Data::Util::Error - Deals with class-specific error handlers in Data::Util
SYNOPSIS
package Foo;
use Data::Util::Error sub{ Foo::Exception->throw(@_) };
use Data::Util qw(:validate);
sub f{
my $x_ref = array_ref shift; # Foo::Exception is thrown if invalid
# ...
}