php-vn-lib/vn/lib/user-exception.php

18 lines
393 B
PHP
Executable File

<?php
namespace Vn\Lib;
require_once (__DIR__.'/exception.php');
/**
* 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 {}
?>