summaryrefslogtreecommitdiff
path: root/Errors
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-20 19:38:18 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-20 19:38:18 -0600
commite587ec71da3f457a945c1d3c5d6cf8c89445cd11 (patch)
tree12ffa068fb158b4b008b3093b7c008ad49d84aad /Errors
parent4d34da521dd05b16b25d1aa2de2567de9d920512 (diff)
Añadido método refresh a controlador de sesiones
Diffstat (limited to 'Errors')
-rw-r--r--Errors/ExpiredSessionError.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Errors/ExpiredSessionError.cs b/Errors/ExpiredSessionError.cs
new file mode 100644
index 0000000..761bbec
--- /dev/null
+++ b/Errors/ExpiredSessionError.cs
@@ -0,0 +1,7 @@
+namespace BackendPIA.Errors {
+ public class ExpiredSessionError : ErrorBase {
+ public int Status { get { return base.Status; } }
+ public string Message { get { return base.Message; }}
+ public ExpiredSessionError(int status, string message) : base(status, message) {}
+ }
+} \ No newline at end of file