Krauza/webservice

View on GitHub
src/Core/Exception/BoxIsEmpty.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Krauza\Core\Exception;

class BoxIsEmpty extends LogicException
{
    public function __construct()
    {
        parent::__construct('Current box has not any cards');
    }
}