-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Parvathy, Rahul] | BAH-3703 | Fix. Improper Session Expiry
- Loading branch information
1 parent
2a65f2d
commit 68605d3
Showing
3 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
openerp-client/src/main/java/org/bahmni/openerp/web/OdooSessionExpiredException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.bahmni.openerp.web; | ||
|
||
public class OdooSessionExpiredException extends RuntimeException { | ||
|
||
public OdooSessionExpiredException() { | ||
super("Odoo Session Expired"); | ||
} | ||
|
||
public OdooSessionExpiredException(Throwable cause) { | ||
super("Odoo Session Expired", cause); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters