Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
userManagement
Commits
cc169c95
Unverified
Commit
cc169c95
authored
1 year ago
by
Shishir Suman
Committed by
GitHub
1 year ago
Browse files
Options
Download
Patches
Plain Diff
Create LogoutFailedException.java
parent
2ec90e4a
dev_stable
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/upsmf/userManagement/exception/LogoutFailedException.java
+21
-0
...upsmf/userManagement/exception/LogoutFailedException.java
with
21 additions
and
0 deletions
+21
-0
src/main/java/com/tarento/upsmf/userManagement/exception/LogoutFailedException.java
0 → 100644
+
21
−
0
View file @
cc169c95
package
com.tarento.upsmf.userManagement.exception
;
import
com.tarento.upsmf.userManagement.utility.ErrorCode
;
public
class
LogoutFailedException
extends
CustomException
{
public
LogoutFailedException
(
String
message
)
{
super
(
message
);
}
public
LogoutFailedException
(
String
message
,
String
description
)
{
super
(
message
,
description
);
}
public
LogoutFailedException
(
String
message
,
ErrorCode
errorCode
)
{
super
(
message
,
errorCode
);
}
public
LogoutFailedException
(
String
message
,
ErrorCode
errorCode
,
String
description
)
{
super
(
message
,
errorCode
,
description
);
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets