15 lines
348 B
PHP
Executable File
15 lines
348 B
PHP
Executable File
<?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 {}
|
|
|