Exemplo n.º 1
0
 private static ResponseStatus ExtractStatus(string status)
 {
     try
     {
         return(EnumMapper.ResponseStatus(status));
     }
     catch (Exception)
     {
         throw new FolkApiException($"Invalid status: {status}");
     }
 }