Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
retypos-server
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eterfund
retypos-server
Commits
e601b73d
Commit
e601b73d
authored
Aug 27, 2018
by
Георгий Попов
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Задача 13121] Добавил подробный вывод сообщения об ошибке при возникновении ошибок на сервере
parent
f1765bc1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
Typo.php
cp/application/models/Typo.php
+18
-1
No files found.
cp/application/models/Typo.php
View file @
e601b73d
...
...
@@ -364,7 +364,24 @@ class Typo extends CI_Model {
throw
new
Exception
(
"Ошибка автоматического исправления опечатки на сервере"
,
500
);
}
catch
(
Exception
$e
)
{
log_message
(
"error"
,
"Ошибка при исправлении опечатки:
{
$e
->
getMessage
()
}
"
);
throw
new
Exception
(
"Произошла неизвестная ошибка, попробуйте повторить попытку позже"
,
500
);
throw
new
Exception
(
$this
->
getExceptionStringForCode
(
$e
->
getCode
()),
$e
->
getCode
());
}
}
/**
* Возвращает читабельную строку для отображения пользователю,
* содержащую описание ошибки
*
* @param $errorCode integer Код ошибки
* @return string Сообщение об ошибке на русском языке
*/
private
function
getExceptionStringForCode
(
$errorCode
)
{
switch
(
$errorCode
)
{
case
404
:
return
"Ошибка в тексте не найдена. Возможно, она уже была исправлена. Проверьте вручную"
;
break
;
default
:
return
"Произошла неизвестная ошибка, попробуйте повторить попытку позже"
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment