<?php
namespace Directus\Hash\Exception;
use Directus\Exception\UnprocessableEntityException;
class HasherNotFoundException extends UnprocessableEntityException
{
const ERROR_CODE = 1000;
public function __construct($algo)
{
$message = sprintf('Hasher "%s" not found', $algo);
parent::__construct($message, static::ERROR_CODE);
}
}