mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 08:34:02 +01:00
12 lines
162 B
PHP
12 lines
162 B
PHP
<?php
|
|
|
|
namespace app\modules\server\events;
|
|
|
|
class ConnectionErrorEvent extends ConnectionEvent
|
|
{
|
|
/**
|
|
* @var \Exception
|
|
*/
|
|
public $exception;
|
|
}
|