Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
3b142e18
Commit
3b142e18
authored
Jul 27, 2021
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改保存历史记录
parent
1826a3ad
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
ExceptionHelper.java
.../java/com/yanzuoguang/util/exception/ExceptionHelper.java
+21
-2
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/exception/ExceptionHelper.java
View file @
3b142e18
...
...
@@ -6,6 +6,7 @@ import com.yanzuoguang.util.vo.ResponseResult;
/**
* 异常处理帮助类
*
* @author 颜佐光
*/
public
class
ExceptionHelper
{
...
...
@@ -55,15 +56,33 @@ public class ExceptionHelper {
* @return 返回的数据
*/
public
static
ResponseResult
getError
(
Exception
e
)
{
return
getError
(
e
,
false
);
}
/**
* 根据异常获取返回数据
*
* @param e 异常信息
* @return 返回的数据
*/
public
static
ResponseResult
getError
(
Exception
e
,
boolean
isFull
)
{
if
(
e
instanceof
CodeException
)
{
CodeException
code
=
(
CodeException
)
e
;
return
new
ResponseResult
(
code
.
getCode
(),
code
.
getMessage
(),
null
,
code
.
getTarget
()
);
return
getError
(
code
.
getCode
(),
code
.
getMessage
(),
code
.
getTarget
(),
isFull
);
}
else
{
String
msg
=
e
.
getMessage
();
if
(
StringHelper
.
isEmpty
(
msg
))
{
msg
=
e
.
getClass
().
getName
();
}
return
ResponseResult
.
error
(
ResultConstants
.
UNKNOW_ERROR
,
msg
,
e
);
return
getError
(
ResultConstants
.
UNKNOW_ERROR
,
msg
,
e
,
isFull
);
}
}
private
static
ResponseResult
getError
(
String
code
,
String
msg
,
Object
target
,
boolean
isFull
)
{
if
(
isFull
)
{
return
ResponseResult
.
error
(
code
,
msg
);
}
else
{
return
ResponseResult
.
error
(
code
,
msg
,
target
);
}
}
}
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