mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
12 lines
274 B
PHP
12 lines
274 B
PHP
|
<?php namespace System\Classes;
|
||
|
|
||
|
/**
|
||
|
* This class represents an application exception.
|
||
|
* Application exceptions are not logged in the error log.
|
||
|
*
|
||
|
* @package october\system
|
||
|
* @author Alexey Bobkov, Samuel Georges
|
||
|
*/
|
||
|
class ApplicationException extends ExceptionBase
|
||
|
{
|
||
|
}
|