1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / oauth / InvalidOAuthParametersException.java
blob66a04fc240d8012c0aa201a27361df5614c7fd12
1 // Copyright 2010 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.oauth;
5 /**
6 * {@code InvalidOAuthParametersException} is thrown when a request is a
7 * malformed OAuth request (for example, it omits a required parameter or
8 * contains an invalid signature).
11 public class InvalidOAuthParametersException extends OAuthRequestException {
12 public InvalidOAuthParametersException(String message) {
13 super(message);