10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
# Date: 28.10.2020 (17:41)
|
|
|
|
namespace Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class GameException extends Exception //custom exception
|
|
{}
|