14 lines
167 B
PHP
14 lines
167 B
PHP
<?php
|
|
|
|
namespace OpenFoodFacts\Exception;
|
|
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Just an exception class for the try catch
|
|
*/
|
|
class ProductNotFoundException extends Exception
|
|
{
|
|
|
|
}
|