debug
This commit is contained in:
17
include/condorcet/src/Throwable/NoSeatsException.php
Normal file
17
include/condorcet/src/Throwable/NoSeatsException.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/*
|
||||
Condorcet PHP - Election manager and results calculator.
|
||||
Designed for the Condorcet method. Integrating a large number of algorithms extending Condorcet. Expandable for all types of voting systems.
|
||||
|
||||
By Julien Boudry and contributors - MIT LICENSE (Please read LICENSE.txt)
|
||||
https://github.com/julien-boudry/Condorcet
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace CondorcetPHP\Condorcet\Throwable;
|
||||
|
||||
class NoSeatsException extends CondorcetPublicApiException
|
||||
{
|
||||
protected $message = 'No seats defined';
|
||||
}
|
Reference in New Issue
Block a user