mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-29 07:26:05 +00:00
10 lines
114 B
PHP
10 lines
114 B
PHP
<?php
|
|
|
|
namespace Espo\Core\Exceptions;
|
|
|
|
class InternalServerError extends \Exception
|
|
{
|
|
protected $code = 500;
|
|
|
|
}
|