Skip to content
Snippets Groups Projects

throw special exception when push token validation fails

3 files
+ 51
5
Compare changes
  • Side-by-side
  • Inline
Files
3
<?php
declare(strict_types=1);
namespace Drupal\firebase_php\Exception;
/**
* Exception if the token is invalid according to Google.
*
* If you get this exception, the token can be deleted.
*/
class FirebasePhpInvalidTokenException extends FirebasePhpException {
}
Loading