Archived
1
0
Fork 0
This repository has been archived on 2023-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ts3web/src/Util/TSException.php
2018-04-03 13:56:20 +02:00

9 lines
No EOL
146 B
PHP

<?php
class TSException extends RuntimeException
{
public function __construct($message)
{
parent::__construct($message);
}
}