public static void EnsureExpiration(this IAuthenticationScope authenticationScope)
 {
     if (authenticationScope.IsExpired())
     {
         throw new DiabloApiAuthenticationExpiredException();
     }
 }