App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / oauth / OAuthServiceFailureException.java
blob73ecfc574394fbc14b2aead1b0efbec34c1ebc1a
1 // Copyright 2010 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.oauth;
5 /**
6 * {@code OAuthServiceFailureException} is thrown when any unknown error occurs
7 * while communicating with the OAuth service.
9 */
10 public class OAuthServiceFailureException extends RuntimeException {
11 public OAuthServiceFailureException(String message) {
12 super(message);