The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Gideon::Plugin::StrictMode - Strict mode Plugin

VERSION

version 0.0.2

SYNOPSIS

  my @users = User->find(); # Returns undef if no users are found
  my @users = User->find( -strict => 1 ); # Throws Gideon::Exception::NotFound

DESCRIPTION

By default Gideon will return undef when any operation is not successful. Strict mode on the other hand will rise exception when an operation is not successful

NAME

Gideon::Plugin::StrictMode

VERSION

version 0.0.2

AUTHOR

Mariano Wahlmann, Gines Razanov

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Mariano Wahlmann, Gines Razanov.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.