15 lines
347 B
PHP
15 lines
347 B
PHP
<?php
|
|
|
|
namespace Vn\Lib;
|
|
|
|
/**
|
|
* Class used to store information about errors, warnings and info messages,
|
|
* that end users understood and are allowed to see.
|
|
*
|
|
* @property string $domain The domain name
|
|
* @property string $code The code of message
|
|
* @property string $message The message string
|
|
*/
|
|
class UserException extends Exception {}
|
|
|