package Games::ABC_Path::Solver::Move::ResultsInASuccess; use strict; use warnings; use base 'Games::ABC_Path::Solver::Move'; =head1 NAME Games::ABC_Path::Solver::Move::ResultsInASuccess - indicates that a trial selection resulted in an error. =head1 VERSION Version 0.3.0 =cut our $VERSION = '0.3.0'; =head1 SYNOPSIS use Games::ABC_Path::Solver::Move::ResultsInASuccess; my $move = Games::ABC_Path::Solver::Move::ResultsInASuccess->new( { vars => { letter => $letter, coords => [$x,$y], }, } ); =head1 DESCRIPTION This is a move that a branch resulted in an error. =cut sub _format { return "Trying %(letter){letter} for %(coords){coords} returns a success."; } =head1 AUTHOR Shlomi Fish, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc Games::ABC_Path::Solver::Move You can also look for information at: =over 4 =item * RT: CPAN's request tracker L =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * Search CPAN L =back =head1 ACKNOWLEDGEMENTS =head1 COPYRIGHT & LICENSE Copyright 2010 Shlomi Fish. This program is distributed under the MIT (X11) License: L Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut 1;