mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
14 lines
332 B
PHP
14 lines
332 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\exceptions;
|
|
|
|
/**
|
|
* The exception can be used for cases where the outcome doesn't seem to be expected,
|
|
* but can theoretically happen. The goal is to capture these areas and refine the logic
|
|
* if such situations do occur.
|
|
*/
|
|
class ThisShouldNotHappenException extends Exception {
|
|
|
|
}
|