File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 1313
1414
1515/**
16- * The exception that is thrown when user attempts to terminate the current presenter or application.
17- * This is special "silent exception" with no error message or code.
16+ * A silent exception used to terminate the current presenter or application.
17+ * Contains no error message or code.
1818 */
1919class AbortException extends \LogicException
2020{
2121}
2222
23+
2324/** @internal */
2425final class SwitchException extends AbortException
2526{
2627}
2728
2829
2930/**
30- * Application fatal error.
31+ * Fatal error in the application .
3132 */
3233class ApplicationException extends \Exception
3334{
3435}
3536
3637
3738/**
38- * The exception that is thrown when a presenter cannot be loaded.
39+ * The requested presenter cannot be loaded.
3940 */
4041class InvalidPresenterException extends \Exception
4142{
4243}
4344
4445
4546/**
46- * The exception that indicates client error with HTTP code 4xx.
47+ * The request resulted in HTTP 4xx client error .
4748 */
4849class BadRequestException extends \LogicException
4950{
@@ -65,7 +66,7 @@ public function getHttpCode(): int
6566
6667
6768/**
68- * Forbidden request exception - access denied .
69+ * Access to the requested resource is forbidden .
6970 */
7071class ForbiddenRequestException extends BadRequestException
7172{
You can’t perform that action at this time.
0 commit comments