summaryrefslogtreecommitdiff
path: root/Errors
diff options
context:
space:
mode:
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