mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
7 lines
223 B
PHP
7 lines
223 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class BenefitsRequirePasswordException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'One or more of the selected benefits require that the user have a password set.';
|
|
}
|