8 lines
178 B
PHP
8 lines
178 B
PHP
<?php
|
|
namespace PhpUnitsOfMeasure\Exception;
|
|
|
|
class UnknownUnitOfMeasure extends AbstractPhysicalQuantityException
|
|
{
|
|
protected $error = 'Unknown unit of measure (:unit).';
|
|
}
|