From e587ec71da3f457a945c1d3c5d6cf8c89445cd11 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Sun, 20 Nov 2022 19:38:18 -0600 Subject: Añadido método refresh a controlador de sesiones MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Errors/ExpiredSessionError.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Errors/ExpiredSessionError.cs (limited to 'Errors') 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 -- cgit v1.2.3