-
Notifications
You must be signed in to change notification settings - Fork 28
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 (#103)
* [Parvathy, Rahul] | BAH-3703 | Fix. Improper Session Expiry * Parvathy | BAH-3703 | Add. Test Cases For Odoo Session Expiry
- Loading branch information
1 parent
2a65f2d
commit 71ed679
Showing
4 changed files
with
45 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
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