* Firebase SDK version: * Library version: 2.15.0 * Firebase Product: auth I'm trying to verify a token using the following code ``` from firebase_admin import auth token = auth.verify_id_token(...) ``` Everything works great until a token is expired. In that case, I get `ValueError`. <img width="452" alt="screenshot 2019-01-17 at 21 22 17" src="https://user-images.githubusercontent.com/1083817/51346566-3e118000-1a9e-11e9-9fe2-c83bfa89477b.png"> I think ValueError is pretty generic, wouldn't it make sense to create a custom exception for this so that an app knows what exactly happened?