for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Box packing (3D bin packing, knapsack problem).
*
* @author Doug Wright
*/
namespace DVDoug\BoxPacker;
* Class ItemTooLargeException
* Exception used when an item is too large to pack into any box.
class ItemTooLargeException extends NoBoxesAvailableException
{
}